1 package nondeterministic_fixture_test 2 3 import ( 4 . "github.com/onsi/ginkgo/v2" 5 ) 6 7 var cheat = func() { 8 It("in", func() { 9 10 }) 11 12 It("order", func() { 13 14 }) 15 } 16 17 var _ = Describe("ordered", Ordered, func() { 18 It("always", func() { 19 20 }) 21 22 It("runs", func() { 23 24 }) 25 26 cheat() 27 }) 28