Files
2026-06-03 06:08:31 +00:00

11 lines
343 B
TypeScript

/**
* Vitest globalSetup hook: extract committed zips into the expected on-disk
* layout before any test runs. We can't rely on npm/pnpm's pretest hook here
* because CI invokes `test:unit` (turbo task), not `test`.
*/
import { extractAllWorkflows } from './extract-workflows';
export default function setup() {
extractAllWorkflows();
}