mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-05 07:38:57 +00:00
21 lines
473 B
JavaScript
21 lines
473 B
JavaScript
module.exports = {
|
|
rootDir: './src',
|
|
automock: false,
|
|
coverageDirectory: '../coverage/',
|
|
collectCoverage: true,
|
|
testURL: 'http://localhost',
|
|
modulePathIgnorePatterns: [
|
|
'node_modules',
|
|
'utils/windowUtils.js',
|
|
'utils/promiseUtils.js',
|
|
'utils/networkUtils.js',
|
|
],
|
|
collectCoverageFrom: [
|
|
'utils/**.js',
|
|
'reducers/utils/**.js',
|
|
],
|
|
setupFiles: [
|
|
'./support/setupJest.js',
|
|
],
|
|
};
|