Test bleed, some docstrings

This commit is contained in:
Aria 2025-08-24 21:14:57 -05:00
parent b8423f0ed1
commit 5e4e678800
5 changed files with 92 additions and 56 deletions

7
vitest.setup.mjs Normal file
View file

@ -0,0 +1,7 @@
import { afterEach } from 'vitest';
import { useOldRandom } from './packages/core/signal.mjs';
afterEach(() => {
// Avoid bleed between tests
useOldRandom(false);
});