maestro/vitest.config.test.ts
oss-sync ed3dc5529a
All checks were successful
CI / build-and-test (push) Successful in 9m8s
CI / build-and-test (pull_request) Successful in 9m42s
sync: update from private repo (9a86f49b)
2026-07-12 23:51:48 +00:00

9 lines
264 B
TypeScript

import { describe, expect, it } from 'vitest';
import config from './vitest.config';
describe('Vitest test collection', () => {
it('excludes runtime-generated workspace output', () => {
expect(config.test?.exclude).toContain('data/worktrees/**');
});
});