Skip to content

Commit

Permalink
chore: remove manual fs.cachedChecks: false
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Aug 13, 2024
1 parent 0721ecd commit 80b3afc
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions test/config/test/fs-cached-check.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,7 @@ test('import a generated file', async () => {
const root = path.resolve('fixtures/fs-cached-check')
await fs.promises.rm(path.join(root, 'dist'), { recursive: true, force: true })

const { stderr, exitCode } = await runVitest(
{
root,
},
undefined,
undefined,
{
server: {
fs: {
cachedChecks: false,
},
},
},
)
const { stderr, exitCode } = await runVitest({ root })
expect(stderr).toBe('')
expect(exitCode).toBe(0)
})

0 comments on commit 80b3afc

Please sign in to comment.