vitest/test/path-resolution/vitest.config.ts
Simon Abbott 6c3d708da6
fix: don't use resolved paths if they don't actually exist (#1868)
Previously `toFilePath` would treat _any_ absolute path that doesn't
start with the `root` (usually the current working directory) as a
relative path, which resulted in some seriously mangled paths. Now we
actually check if that resolved path exists before committing to it.

This fixes #1864.
2022-10-31 10:36:54 +01:00

8 lines
118 B
TypeScript

import { defineConfig } from 'vite'
export default defineConfig({
test: {
include: ['test/*.test.ts'],
},
})