mirror of
https://github.com/bitwarden/browser.git
synced 2025-02-15 01:11:47 +01:00
11 lines
312 B
JavaScript
11 lines
312 B
JavaScript
|
const sharedConfig = require("../../libs/shared/jest.config.angular");
|
||
|
|
||
|
/** @type {import('jest').Config} */
|
||
|
module.exports = {
|
||
|
...sharedConfig,
|
||
|
testMatch: ["**/+(*.)+(spec).+(mjs)"],
|
||
|
displayName: "libs/eslint tests",
|
||
|
preset: "jest-preset-angular",
|
||
|
setupFilesAfterEnv: ["<rootDir>/test.setup.mjs"],
|
||
|
};
|