chore: migrate to vitest for 10x faster tests (#257)

* chore migrate to vitest

* chore: cleanup jest stuff

* chore: install the coverage dep
This commit is contained in:
Simon Holmes
2023-03-28 10:22:58 +00:00
committed by GitHub
parent 11d6172e95
commit 3749c9b2af
7 changed files with 1691 additions and 5953 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'vite';
import path from 'path';
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './'),
},
},
});