Files
slippi-js/jest.config.js
Nikhil Narayana 8c190fd23d refactor: migrate yarn -> npm and update ci to node 20 (#141)
* migrate yarn -> npm and update ci to node 20

* add eslint-plugin-flowtype to dev deps

* fix coverage, add jest and ts-jest explicitly to dev deps

still need to fix tests on CI
2025-05-13 18:48:16 -07:00

13 lines
236 B
JavaScript

module.exports = {
testTimeout: 300000, // 5 minutes in milliseconds
transform: {
"^.+\\.tsx?$": [
"ts-jest",
{
//the content originally placed at "global"
diagnostics: false,
},
],
},
};