8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = async () => {
|
|
return {
|
|
testMatch: [path.join(__dirname, '**/*.test.js')],
|
|
testTimeout: 1000,
|
|
}
|
|
} |