mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
module.exports = {
|
|
setupFiles: ["./jest.setup.js"],
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
transform: {
|
|
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
|
|
},
|
|
// testMatch: ["**/?(*.)+(test).[jt]s?(x)"],
|
|
testEnvironment: "jsdom",
|
|
};
|