mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
9 lines
268 B
TypeScript
9 lines
268 B
TypeScript
import { existsSync } from 'fs';
|
|
import { getExamples } from '../test-utils';
|
|
|
|
describe('should have test for each example', () => {
|
|
it.each(getExamples())('should exist $exampleName', async ({testPath}) => {
|
|
expect(existsSync(testPath)).toBeTruthy();
|
|
});
|
|
});
|