Bug with Bun. one.test.ts
and two.test.ts
are identical, save the word 'First' is replaced with 'Second' in two.test.ts.
When the tests run, everything in the first test ran by bun is ran, everything after the before is skipped in the following test.
Console:
bun-node-test % bun test
bun test v1.2.18 (0d4089ea)
two.test.ts:
Before Two Test
Two Test
✓ Two Test > Two Test
After Two Test
one.test.ts:
Before First Test
1 pass
0 fail
Ran 1 test across 2 files. [95.00ms]