I use ginkgo to write some tests, including:
- books_suite_test.go
- install_test.go
- reading_test.go
- isbn_test.go
- uninstall_test.go
how to run these tests in a specific order as following:
install_test.go -> reading_test.go -> isbn_test.go -> uninstall_test.go
I found ginkgo can not ensure the test order. Is there any way to do this?