9 lines
264 B
TypeScript
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/**');
|
|
});
|
|
});
|