refactor: move hoppscotch-common tests to vitest (#3154)

This commit is contained in:
Andrew Bastin
2023-06-22 00:36:25 +05:30
committed by GitHub
parent fc3e3aeaec
commit 6f35574d68
21 changed files with 698 additions and 281 deletions

View File

@@ -0,0 +1,14 @@
import { defineConfig } from "vitest/config"
import * as path from "path"
export default defineConfig({
test: {
environment: "jsdom",
setupFiles: "./src/setupTests.ts",
},
resolve: {
alias: {
"~": path.resolve(__dirname, "../hoppscotch-common/src"),
},
},
})