8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
|
module.exports = {
|
||
|
testMatch: ['**/test/**/*.+(ts|tsx|js)', '**/src/**/(*.)+(spec|test).+(ts|tsx|js)'],
|
||
|
transform: {
|
||
|
'^.+\\.(ts|tsx)$': 'ts-jest',
|
||
|
},
|
||
|
testEnvironment: 'miniflare',
|
||
|
}
|