Open przemolb opened 3 months ago
@przemolb I don't know of a way to force execution order of test functions spread across multiple files.
func TestDriver(t *testing.T){
myTestA(t)
myTestB(t)
...
}
func myTestA(t *testing.T)
func myTestB(t *testing.T)
Hope that helps.
What do you want to see?
Hello everyone, (this is not I would like to split all e2e tests across different
*_test.go
files for maintenance purposes. How do I enforce specific order of allTest*
functions from different*_test.go
files ? Is there any way I can do that ?Extra Labels
No response