You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
452 B
JavaScript
22 lines
452 B
JavaScript
module.exports = {
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
],
|
|
"setupFilesAfterEnv": ["./src/tests/utils/helpers.ts"],
|
|
"testMatch": [
|
|
"**/__tests__/**/*.+(ts|tsx|js)",
|
|
"**/?(*.)+(spec|test).+(ts|tsx|js)"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
".*/tests/.*.ts"
|
|
],
|
|
"transform": {
|
|
"^.+\\.(ts|tsx)$": "ts-jest"
|
|
},
|
|
"coveragePathIgnorePatterns": [
|
|
"node_modules",
|
|
".module.ts",
|
|
"<rootDir>/src/binutils.ts",
|
|
".mock.ts"
|
|
],
|
|
} |