./I have a test suite that has 4 specs, like this:
var _ = Describe("Start a Cycle", func() {
It("test 1", func() {...})
It("test 2", func() {...})
It("test 3", func() {...})
It("test 4", func() {...})
})
I would like to run only "test 1" , the following command doesn't work, even though the documentation says it should:
ginkgo testDir --focus "test 1"
Can someone tell me what I did wrong? Thanks!