mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-13 06:23:00 +08:00
24 lines
848 B
JavaScript
24 lines
848 B
JavaScript
module.exports = {
|
|
// The bail config option can be used here to have Jest stop running tests after
|
|
// the first failure.
|
|
bail: false,
|
|
|
|
// Indicates whether each individual test should be reported during the run.
|
|
verbose: false,
|
|
|
|
// Indicates whether the coverage information should be collected while executing the test
|
|
collectCoverage: false,
|
|
|
|
// The directory where Jest should output its coverage files.
|
|
coverageDirectory: './coverage/',
|
|
|
|
// If the test path matches any of the patterns, it will be skipped.
|
|
testPathIgnorePatterns: ['<rootDir>/node_modules/'],
|
|
|
|
// If the file path matches any of the patterns, coverage information will be skipped.
|
|
coveragePathIgnorePatterns: ['<rootDir>/node_modules/'],
|
|
|
|
// The pattern Jest uses to detect test files.
|
|
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$',
|
|
};
|