add configs
This commit is contained in:
parent
a52e0306ce
commit
c1d611827f
|
@ -0,0 +1,10 @@
|
|||
module.exports = {
|
||||
testEnvironment: 'node',
|
||||
transform: {
|
||||
'\\.[jt]sx?$': [
|
||||
'babel-jest',
|
||||
{ configFile: require.resolve('./babel.config') },
|
||||
],
|
||||
},
|
||||
watchPathIgnorePatterns: ['\\/node_modules\\/'],
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
module.exports = {
|
||||
projects: ['packages/status-js'],
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
module.exports = {
|
||||
...require('../../jest.config.base'),
|
||||
displayName: 'core',
|
||||
}
|
|
@ -7,6 +7,7 @@
|
|||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./*"]
|
||||
}
|
||||
},
|
||||
"rootDir": "."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"files": [],
|
||||
"exclude": ["node_modules"],
|
||||
"references": [{ "path": "packages/status-js" }]
|
||||
}
|
Loading…
Reference in New Issue