mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 11:43:51 +00:00
14 lines
411 B
JavaScript
14 lines
411 B
JavaScript
const sharedConfig = require("../shared/jest.config.angular");
|
|
|
|
module.exports = {
|
|
...sharedConfig,
|
|
displayName: "playwright-helpers",
|
|
preset: "../../jest.preset.js",
|
|
testEnvironment: "node",
|
|
transform: {
|
|
"^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }],
|
|
},
|
|
moduleFileExtensions: ["ts", "js", "html"],
|
|
coverageDirectory: "../../coverage/libs/playwright-helpers",
|
|
};
|