mirror of
https://github.com/linuxserver/budge.git
synced 2026-03-09 00:08:38 +08:00
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
"timers": "fake",
|
|
"transform": {
|
|
"^.+\\.[t|j]sx?$": "babel-jest"
|
|
},
|
|
testMatch: [
|
|
'**/test/**/*.[jt]s?(x)',
|
|
'!**/test/coverage/**',
|
|
'!**/test/utils/**',
|
|
'!**/test/images/**',
|
|
],
|
|
};
|