refactor: monorepo+pnpm (removed husky)
This commit is contained in:
24
packages/hoppscotch-app/jest.config.js
Normal file
24
packages/hoppscotch-app/jest.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
module.exports = {
|
||||
moduleFileExtensions: ["ts", "js", "json", "vue"],
|
||||
watchman: false,
|
||||
moduleNameMapper: {
|
||||
"^@/(.*)$": "<rootDir>/$1",
|
||||
"^~/(.*)$": "<rootDir>/$1",
|
||||
"^vue$": "vue/dist/vue.common.js",
|
||||
},
|
||||
transform: {
|
||||
"^.+\\.ts$": "ts-jest",
|
||||
"^.+\\.js$": "babel-jest",
|
||||
".*\\.(vue)$": "vue-jest",
|
||||
},
|
||||
setupFilesAfterEnv: ["<rootDir>/jest.setup.js"],
|
||||
snapshotSerializers: ["jest-serializer-vue"],
|
||||
collectCoverage: true,
|
||||
collectCoverageFrom: [
|
||||
"<rootDir>/components/**/*.vue",
|
||||
"<rootDir>/pages/*.vue",
|
||||
],
|
||||
testURL: "http://localhost/",
|
||||
preset: "ts-jest/presets/js-with-babel",
|
||||
testEnvironment: "jsdom",
|
||||
}
|
||||
Reference in New Issue
Block a user