bitburner-src/jest.config.js

12 lines
274 B
JavaScript
Raw Normal View History

2021-08-27 01:24:29 +02:00
module.exports = {
2021-09-05 01:09:30 +02:00
setupFiles: ["./jest.setup.js"],
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
transform: {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
},
testPathIgnorePatterns: [
'.cypress', 'node_modules', 'dist',
],
2021-09-05 01:09:30 +02:00
testEnvironment: "jsdom",
2021-08-27 01:24:29 +02:00
};