Add docstring and example

This commit is contained in:
Aria 2026-01-22 14:08:26 -06:00
parent 6e61f3cdb6
commit d79d122f68
3 changed files with 45 additions and 0 deletions

View file

@ -1,7 +1,9 @@
import { afterEach } from 'vitest';
import { useRNG } from './packages/core/signal.mjs';
import { setDefaultAlignment } from './packages/core/pattern.mjs';
afterEach(() => {
// Avoid bleed between tests
useRNG('legacy');
setDefaultAlignment('in');
});