You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test setup/preload file — If test/test-setup.{ts,tsx,js,jsx} exists, it is imported once at the top of the generated test entry, before any test files, on every platform (bun, node, browsers). Use it to register global beforeEach/afterEach hooks, install polyfills, or do environment setup that must run ahead of the suite. No config or flag — a single conventional file, discovered like the tests and excluded from the run so it isn't executed as a test. Platform-specific behavior lives inside the one file via runtime detection (e.g. if (typeof Bun !== "undefined") { ... }), since all tests share a single bundle per platform. Resolves #13.