re-enable most integration tests

This commit is contained in:
Lucas Clemente
2016-07-08 14:02:34 +02:00
parent c672f461de
commit 50aa7ec52c
3 changed files with 4 additions and 4 deletions

View File

@@ -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 {

View File

@@ -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)

View File

@@ -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"),