Files
hoppscotch/packages/hoppscotch-common/vitest.config.ts
2023-06-22 00:36:25 +05:30

15 lines
290 B
TypeScript

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"),
},
},
})