mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
|
module.exports = {
|
||
|
"roots": [
|
||
|
"<rootDir>/src"
|
||
|
],
|
||
|
testMatch: [
|
||
|
"**/__tests__/**/*.+(ts|tsx|js)",
|
||
|
"**/?(*.)+(spec|test).+(ts|tsx|js)"
|
||
|
],
|
||
|
"transform": {
|
||
|
"^.+\\.(ts|tsx)?$": "ts-jest"
|
||
|
},
|
||
|
"setupFilesAfterEnv": ["jest-expect-message"]
|
||
|
}
|