1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-12 11:28:56 +00:00
trezor-wallet/jest.config.js
2019-04-02 17:41:28 +02:00

28 lines
715 B
JavaScript

module.exports = {
rootDir: './src',
automock: false,
coverageDirectory: '../coverage/',
collectCoverage: true,
testURL: 'http://localhost',
modulePathIgnorePatterns: [
'node_modules',
'utils/build.js',
'utils/windowUtils.js',
'utils/promiseUtils.js',
'utils/networkUtils.js',
],
collectCoverageFrom: ['utils/**.js', 'reducers/utils/**.js'],
// coverageThreshold: {
// global: {
// branches: 100,
// functions: 100,
// lines: 100,
// statements: 100,
// },
// },
setupFiles: ['./support/setupJest.js'],
transform: {
'^.+\\.jsx?$': 'babel-jest',
},
};