Skip to content

Instantly share code, notes, and snippets.

@williammartin
Last active June 21, 2019 16:08
Show Gist options
  • Select an option

  • Save williammartin/5e8d85812b57bce91aeadc5672a072a6 to your computer and use it in GitHub Desktop.

Select an option

Save williammartin/5e8d85812b57bce91aeadc5672a072a6 to your computer and use it in GitHub Desktop.
var _ = Describe("ginkgotcha", func() {
It("leaks a goroutine", func() {
go func() {
defer GinkgoRecover()
time.Sleep(time.Second / 2)
Fail("lol play time is over")
}()
})
It("is gonna have a bad time", func() {
time.Sleep(time.Second)
Expect(true).Should(BeTrue())
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment