diff --git a/testing/scenarios/common.go b/testing/scenarios/common.go index b6b57f391..98b94eab7 100644 --- a/testing/scenarios/common.go +++ b/testing/scenarios/common.go @@ -113,7 +113,11 @@ func CloseAllServers(servers []*exec.Cmd) { Content: "Closing all servers.", }) for _, server := range servers { - server.Process.Signal(syscall.SIGTERM) + if runtime.GOOS == "windows" { + server.Process.Kill() + } else { + server.Process.Signal(syscall.SIGTERM) + } } for _, server := range servers { server.Process.Wait()