mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
module.exports = {
|
|
setupFiles: ["./jest.setup.js"],
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
transform: {
|
|
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
|
|
},
|
|
testPathIgnorePatterns: [
|
|
'.cypress', 'node_modules', 'dist',
|
|
],
|
|
testEnvironment: "jsdom",
|
|
};
|