From 50aa7ec52cce456d9cfc381ca911726ecba5dbd6 Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Fri, 8 Jul 2016 14:02:34 +0200 Subject: [PATCH] re-enable most integration tests --- integrationtests/chrome_test.go | 4 ++-- integrationtests/drop_test.go | 2 +- integrationtests/integration_test.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/integrationtests/chrome_test.go b/integrationtests/chrome_test.go index 5ff3d2a4c..f4f018a91 100644 --- a/integrationtests/chrome_test.go +++ b/integrationtests/chrome_test.go @@ -35,7 +35,7 @@ func init() { }) } -var _ = PDescribe("Chrome tests", func() { +var _ = Describe("Chrome tests", func() { It("loads a simple hello world page using quic", func(done Done) { err := wd.Get("https://quic.clemente.io/hello") Expect(err).NotTo(HaveOccurred()) @@ -45,7 +45,7 @@ var _ = PDescribe("Chrome tests", func() { close(done) }, 5) - It("loads a large number of files", func(done Done) { + PIt("loads a large number of files", func(done Done) { err := wd.Get("https://quic.clemente.io/tiles") Expect(err).NotTo(HaveOccurred()) Eventually(func() error { diff --git a/integrationtests/drop_test.go b/integrationtests/drop_test.go index 2d5b1165b..e8b6f933e 100644 --- a/integrationtests/drop_test.go +++ b/integrationtests/drop_test.go @@ -48,7 +48,7 @@ func runDropTest(incomingPacketDropper, outgoingPacketDropper dropCallback, vers Expect(bytes.Contains(session.Out.Contents(), data)).To(BeTrue()) } -var _ = PDescribe("Drop Proxy", func() { +var _ = Describe("Drop Proxy", func() { AfterEach(func() { proxy.Stop() time.Sleep(time.Millisecond) diff --git a/integrationtests/integration_test.go b/integrationtests/integration_test.go index 5c1af8c84..6a8c1d704 100644 --- a/integrationtests/integration_test.go +++ b/integrationtests/integration_test.go @@ -19,7 +19,7 @@ import ( . "github.com/onsi/gomega/gexec" ) -var _ = PDescribe("Integration tests", func() { +var _ = Describe("Integration tests", func() { clientPath := fmt.Sprintf( "%s/src/github.com/lucas-clemente/quic-clients/client-%s-debug", os.Getenv("GOPATH"),