theatre/wallaby.conf.js

14 lines
250 B
JavaScript
Raw Permalink Normal View History

2022-02-21 13:33:08 +01:00
module.exports = () => {
return {
autoDetect: true,
tests: [
'theatre/**/*.test.ts',
'packages/dataverse/**/*.test.ts',
'!**/node_modules/**',
],
testFramework: {
configFile: './jest.config.js',
},
}
}