()
| 19 | const file = './fixtures/setup-files/empty-setup.ts' |
| 20 | |
| 21 | async function run() { |
| 22 | return await runVitest({ |
| 23 | root: 'fixtures/setup-files', |
| 24 | include: ['empty.test.ts'], |
| 25 | setupFiles: ['./empty-setup.ts'], |
| 26 | changed: true, |
| 27 | }) |
| 28 | } |
| 29 | |
| 30 | // Note that this test will fail locally if you have uncommitted changes |
| 31 | it.runIf(process.env.GITHUB_ACTIONS && !process.env.ECOSYSTEM_CI)('should run no tests if setup file is not changed', async () => { |
no test coverage detected