Start a unique quic server per integration test case

This fixes a race condition that could lead to errors during version negotiation.

Fixes #676.
This commit is contained in:
Lucas Clemente
2017-06-15 13:40:36 +02:00
parent d335458080
commit 960a445ebe
2 changed files with 12 additions and 5 deletions

View File

@@ -79,6 +79,9 @@ var _ = Describe("Chrome tests", func() {
}
supportedVersionsBefore = protocol.SupportedVersions
protocol.SupportedVersions = []protocol.VersionNumber{version}
})
JustBeforeEach(func() {
wd = getWebdriverForVersion(version)
})