mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 01:20:24 +03:00
Moved jest config from package.json to external file
This commit is contained in:
parent
28bd39f974
commit
f84e3c5b60
2 changed files with 33 additions and 35 deletions
33
jest.config.js
Normal file
33
jest.config.js
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
module.exports = {
|
||||||
|
coverageDirectory: '<rootDir>/coverage',
|
||||||
|
collectCoverageFrom: [
|
||||||
|
'src/**/*.{js,jsx,mjs}',
|
||||||
|
'!src/registerServiceWorker.js',
|
||||||
|
'!src/index.js',
|
||||||
|
],
|
||||||
|
setupFiles: [
|
||||||
|
'<rootDir>/config/polyfills.js',
|
||||||
|
'<rootDir>/config/setupEnzyme.js',
|
||||||
|
],
|
||||||
|
testMatch: [ '<rootDir>/test/**/*.test.{js,jsx,mjs}' ],
|
||||||
|
testEnvironment: 'node',
|
||||||
|
testURL: 'http://localhost',
|
||||||
|
transform: {
|
||||||
|
'^.+\\.(js|jsx|mjs)$': '<rootDir>/node_modules/babel-jest',
|
||||||
|
'^.+\\.css$': '<rootDir>/config/jest/cssTransform.js',
|
||||||
|
'^(?!.*\\.(js|jsx|mjs|css|json)$)': '<rootDir>/config/jest/fileTransform.js',
|
||||||
|
},
|
||||||
|
transformIgnorePatterns: [ '[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$' ],
|
||||||
|
moduleNameMapper: {
|
||||||
|
'^react-native$': 'react-native-web',
|
||||||
|
},
|
||||||
|
moduleFileExtensions: [
|
||||||
|
'web.js',
|
||||||
|
'js',
|
||||||
|
'json',
|
||||||
|
'web.jsx',
|
||||||
|
'jsx',
|
||||||
|
'node',
|
||||||
|
'mjs',
|
||||||
|
],
|
||||||
|
};
|
35
package.json
35
package.json
|
@ -102,41 +102,6 @@
|
||||||
"webpack-manifest-plugin": "1.3.2",
|
"webpack-manifest-plugin": "1.3.2",
|
||||||
"whatwg-fetch": "2.0.3"
|
"whatwg-fetch": "2.0.3"
|
||||||
},
|
},
|
||||||
"jest": {
|
|
||||||
"coverageDirectory": "<rootDir>/coverage",
|
|
||||||
"collectCoverageFrom": [
|
|
||||||
"src/**/*.{js,jsx,mjs}"
|
|
||||||
],
|
|
||||||
"setupFiles": [
|
|
||||||
"<rootDir>/config/polyfills.js",
|
|
||||||
"<rootDir>/config/setupEnzyme.js"
|
|
||||||
],
|
|
||||||
"testMatch": [
|
|
||||||
"<rootDir>/test/**/*.test.{js,jsx,mjs}"
|
|
||||||
],
|
|
||||||
"testEnvironment": "node",
|
|
||||||
"testURL": "http://localhost",
|
|
||||||
"transform": {
|
|
||||||
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
|
|
||||||
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
|
|
||||||
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
|
|
||||||
},
|
|
||||||
"transformIgnorePatterns": [
|
|
||||||
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
|
|
||||||
],
|
|
||||||
"moduleNameMapper": {
|
|
||||||
"^react-native$": "react-native-web"
|
|
||||||
},
|
|
||||||
"moduleFileExtensions": [
|
|
||||||
"web.js",
|
|
||||||
"js",
|
|
||||||
"json",
|
|
||||||
"web.jsx",
|
|
||||||
"jsx",
|
|
||||||
"node",
|
|
||||||
"mjs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"babel": {
|
"babel": {
|
||||||
"presets": [
|
"presets": [
|
||||||
"react-app"
|
"react-app"
|
||||||
|
|
Loading…
Reference in a new issue