I’m having trouble with my database project’s stored procedure tests. I’ve got about 50 unit tests. They all pass when run separately but fail during a group run. I think the execution order is messing with the data in some tables.
Is there a way to see the test execution sequence? The test window only shows start and end times for the whole batch. It’d be super helpful to see something like:
Test discovery started
52 tests found (0.4 seconds)
Test run started
TestA started
TestB started
Test run finished (13.5 seconds)
This would help me figure out why tests that work alone fail in a group. Any ideas on how to get this kind of detailed log? Is it even possible with the current setup?