mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
b14bb92d78
* Create bit-cli folder with configs * Add bit-cli to workspace * Refactor CLI app structure * services are managed by the ServiceContainer * programs are registered by register(Oss|Bit)Program * the app is bootstrapped by Main * Reapply changes from #9099 * Reapply changes from #8604 * Reapply changes from #9115
17 lines
476 B
JavaScript
17 lines
476 B
JavaScript
const { pathsToModuleNameMapper } = require("ts-jest");
|
|
|
|
const { compilerOptions } = require("./tsconfig");
|
|
|
|
const sharedConfig = require("../../libs/shared/jest.config.ts");
|
|
|
|
/** @type {import('jest').Config} */
|
|
module.exports = {
|
|
...sharedConfig,
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
setupFilesAfterEnv: ["<rootDir>/../../apps/cli/test.setup.ts"],
|
|
moduleNameMapper: pathsToModuleNameMapper(compilerOptions?.paths || {}, {
|
|
prefix: "<rootDir>/",
|
|
}),
|
|
};
|