mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest/presets/default-esm',
|
|
name: 'api',
|
|
testEnvironment: 'miniflare',
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: '<rootDir>/tsconfig.test.json',
|
|
useESM: true,
|
|
},
|
|
},
|
|
};
|