mirror of
https://github.com/bitwarden/browser
synced 2026-02-26 17:43:22 +00:00
* Add unlock service * Move methods * Prettier * Fix type errors * Prettier * Fix test * Fix module order * Attempt to fix tests * Cleanup CODEOWNERS * Backport biometric unlock and legacy master-key logic * Add tests for biometrics * Prettier * Add biometric unlock to abstract unlock service * Fix build
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
module.exports = {
|
|
displayName: "unlock",
|
|
preset: "../../jest.preset.js",
|
|
testEnvironment: "node",
|
|
transform: {
|
|
"^.+\\.[tj]s$": ["ts-jest", { tsconfig: "<rootDir>/tsconfig.spec.json" }],
|
|
},
|
|
moduleFileExtensions: ["ts", "js", "html"],
|
|
coverageDirectory: "../../coverage/libs/unlock",
|
|
};
|