mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-13 09:32:12 +00:00
17 lines
314 B
JavaScript
17 lines
314 B
JavaScript
|
|
|
|
module.exports = {
|
|
projects: [
|
|
{
|
|
displayName: 'node',
|
|
roots: [ '<rootDir>/test' ],
|
|
testTimeout: 10000,
|
|
transform: {
|
|
"^.+\\.(ts|tsx)$": "ts-jest",
|
|
},
|
|
moduleFileExtensions: ["ts", "tsx", "js"],
|
|
testMatch: [ '**/*.test.ts' ],
|
|
setupFiles: []
|
|
}
|
|
]
|
|
}; |