mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 17:43:22 +00:00
This is a client-side implementation of the db recipes seeding framework for bitwarden server
14 lines
417 B
JavaScript
14 lines
417 B
JavaScript
const sharedConfig = require("../../libs/shared/jest.config.angular");
|
|
|
|
module.exports = {
|
|
...sharedConfig,
|
|
displayName: "playwright-scenes",
|
|
preset: "../../jest.preset.js",
|
|
testEnvironment: "node",
|
|
transform: {
|
|
"^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }],
|
|
},
|
|
moduleFileExtensions: ["ts", "js", "html"],
|
|
coverageDirectory: "../../coverage/libs/playwright-scenes",
|
|
};
|