13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
module.exports = () => {
|
|
return {
|
|
autoDetect: true,
|
|
tests: [
|
|
'theatre/**/*.test.ts',
|
|
'packages/dataverse/**/*.test.ts',
|
|
'!**/node_modules/**',
|
|
],
|
|
testFramework: {
|
|
configFile: './jest.config.js',
|
|
},
|
|
}
|
|
}
|