mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2024-12-13 11:53:54 +02:00
12 lines
434 B
JavaScript
Vendored
12 lines
434 B
JavaScript
Vendored
module.exports = {
|
|
displayName: "blueprints",
|
|
preset: "../../jest.preset.js",
|
|
transform: {
|
|
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "@nrwl/react/plugins/jest",
|
|
"^.+\\.[tj]sx?$": ["babel-jest", { cwd: __dirname, configFile: "./babel-jest.config.json" }],
|
|
},
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
coverageDirectory: "../../coverage/apps/blueprints",
|
|
snapshotSerializers: ["@emotion/jest/serializer"],
|
|
};
|