forked from project-chip/zap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
executable file
·62 lines (62 loc) · 2.17 KB
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module.exports = {
globals: {
__DEV__: true
},
preset: '@quasar/quasar-app-extension-testing-unit-jest',
globalSetup: '<rootDir>/test/global-setup.js',
globalTeardown: '<rootDir>/test/global-teardown.js',
// noStackTrace: true,
// bail: true,
// cache: false,
// verbose: true,
// watch: true,
collectCoverage: true,
coverageDirectory: 'jest-coverage',
collectCoverageFrom: [
'<rootDir>/src-electron/**/*.js',
'<rootDir>/src-shared/**/*.js',
// Enable these once the UI testing is available
'<rootDir>/src/**/*.vue',
'<rootDir>/src/**/*.js',
'<rootDir>/src/**/*.jsx'
],
coverageThreshold: {
global: {
// Note to whoever is looking at these number:
// We need to settle on much higher number, so we will slowly
// be inching this upward, as we add more unit tests.
// DO NOT EVER DECREASE THESE NUMBERS, PLEASE, UNLESS FOR A GOOD REASON.
statements: 65,
branches: 56,
functions: 57,
lines: 65
}
},
testMatch: ['<rootDir>/test/*.test.js', '<rootDir>/test/*.test.ts'],
moduleFileExtensions: ['vue', 'js', 'jsx', 'json', 'ts', 'tsx'],
moduleNameMapper: {
'^~/(.*)$': '<rootDir>/$1',
'^src/(.*)$': '<rootDir>/src/$1',
'.*css$': '<rootDir>/test/jest/utils/stub.css',
'.*\\.sql$': '<rootDir>/test/jest/__mocks__/zap-sql-mock.js',
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/test/jest/__mocks__/file-mock.js'
},
transform: {
'.*\\.[jt]sx?$': 'babel-jest',
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$':
'jest-transform-stub'
// use these if NPM is being flaky
// '.*\\.vue$': '<rootDir>/node_modules/@quasar/quasar-app-extension-testing-unit-jest/node_modules/vue-jest',
// '.*\\.js$': '<rootDir>/node_modules/@quasar/quasar-app-extension-testing-unit-jest/node_modules/babel-jest'
},
testResultsProcessor: 'jest-sonar-reporter',
testPathIgnorePatterns: [
'/node_modules/',
'<rootDir>/test/download-artifact.test.js'
],
coveragePathIgnorePatterns: [
'/node_modules/',
'<rootDir>/src-electron/generator/matter/darwin/Framework/CHIP/templates/helper.js'
]
}