mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
Upgrades to Eslint v9. Since this is a major version there were breaking changes, but since we've previously migrated to flat configs in #12806 those were minimal.
12 lines
349 B
JavaScript
12 lines
349 B
JavaScript
const sharedConfig = require("../../libs/shared/jest.config.angular");
|
|
|
|
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
...sharedConfig,
|
|
testEnvironment: "./fix-jsdom.ts",
|
|
testMatch: ["**/+(*.)+(spec).+(mjs)"],
|
|
displayName: "libs/eslint tests",
|
|
preset: "jest-preset-angular",
|
|
setupFilesAfterEnv: ["<rootDir>/test.setup.mjs"],
|
|
};
|