Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/web/client/jest.config.js
994 views
1
module.exports = {
2
transform: {
3
"^.+\\.vue$": "vue-jest",
4
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$":
5
"jest-transform-stub",
6
"^.+\\.tsx?$": "ts-jest",
7
},
8
testMatch: [
9
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)",
10
],
11
collectCoverage: true,
12
collectCoverageFrom: [
13
"src/(store|config|components|views|utils|models)/**/*.(ts|vue)",
14
],
15
};
16
17