mirror of
https://github.com/kremalicious/blowfish.git
synced 2024-12-28 23:57:52 +01:00
move jest config
This commit is contained in:
parent
4d9dcf68eb
commit
2764f2eda8
@ -22,7 +22,8 @@ before_script:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
- npm test || travis_terminate 1
|
- npm test || travis_terminate 1
|
||||||
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
- ./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.json src/renderer/coverage/lcov.info
|
||||||
|
- if [[ "$TRAVIS_TEST_RESULT" == 0 ]]; then ./cc-test-reporter upload-coverage; fi
|
||||||
- npm run dist
|
- npm run dist
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
|
21
package.json
21
package.json
@ -5,8 +5,8 @@
|
|||||||
"description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.",
|
"description": "🐡 Simple Electron-based desktop app to retrieve and display your total Ocean Token balances.",
|
||||||
"main": "./src/main/index.js",
|
"main": "./src/main/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "npm run lint && jest --config=src/renderer/jest.config.js --coverage",
|
"test": "npm run lint && jest --coverage",
|
||||||
"test:watch": "jest --config=src/renderer/jest.config.js --coverage --watch",
|
"test:watch": "jest --coverage --watch",
|
||||||
"lint": "eslint --ignore-path .gitignore ./src/**/*.{js,jsx} && stylelint --ignore-path .gitignore ./src/**/*.{css,scss}",
|
"lint": "eslint --ignore-path .gitignore ./src/**/*.{js,jsx} && stylelint --ignore-path .gitignore ./src/**/*.{css,scss}",
|
||||||
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
|
"start": "webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js",
|
||||||
"build": "cross-env NODE_ENV=production webpack --config webpack.common.config.js",
|
"build": "cross-env NODE_ENV=production webpack --config webpack.common.config.js",
|
||||||
@ -124,5 +124,22 @@
|
|||||||
"npm": {
|
"npm": {
|
||||||
"publish": false
|
"publish": false
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"jest": {
|
||||||
|
"rootDir": "src/renderer",
|
||||||
|
"transform": {
|
||||||
|
"^.+\\.jsx?$": "babel-jest"
|
||||||
|
},
|
||||||
|
"moduleNameMapper": {
|
||||||
|
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
|
||||||
|
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/jest/__mocks__/file-mock.js",
|
||||||
|
"\\.svg": "<rootDir>/jest/__mocks__/svgr-mock.js"
|
||||||
|
},
|
||||||
|
"testURL": "http://localhost",
|
||||||
|
"setupFilesAfterEnv": [
|
||||||
|
"<rootDir>/jest/setup-test-env.js"
|
||||||
|
],
|
||||||
|
"runner": "@jest-runner/electron",
|
||||||
|
"testEnvironment": "@jest-runner/electron/environment"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
moduleNameMapper: {
|
|
||||||
'.+\\.(css|styl|less|sass|scss)$': 'identity-obj-proxy',
|
|
||||||
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
|
|
||||||
'<rootDir>/jest/__mocks__/file-mock.js',
|
|
||||||
'\\.svg': '<rootDir>/jest/__mocks__/svgr-mock.js'
|
|
||||||
},
|
|
||||||
testPathIgnorePatterns: ['node_modules', 'dist', 'build', 'coverage'],
|
|
||||||
testURL: 'http://localhost',
|
|
||||||
setupFilesAfterEnv: ['<rootDir>/jest/setup-test-env.js'],
|
|
||||||
runner: '@jest-runner/electron',
|
|
||||||
testEnvironment: '@jest-runner/electron/environment'
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user