Replies: 1 comment
-
As of this writing, I'm using bun If this assumption about sequential execution is incorrect, someone please let me know. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to force bun to run tests sequentially?
My tests are dependent on database state, and some fail when running
bun test
. I suspect this is caused by race conditions from running tests concurrently. When i run the failing tests in isolation, however, they pass.Running the tests with Jest works fine, although execution is a lot slower.
Beta Was this translation helpful? Give feedback.
All reactions