mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
* feat: add caching to run failed and longer tests first * chore: cleanup * chore: add clearCache * chore: update lockfile * chore: add filesCache * refactor: add sequelizer * chore: lockfile * refactor: renaming * chore: dont override version * chore: fix clearCache * chore: guard slice * chore: cleanup * docs: cleanup * chore: cleanup * chore: remove command for now * refactor: cleanup
10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
cache: {
|
|
dir: 'cache/.vitest-custom',
|
|
},
|
|
},
|
|
})
|