mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-16 00:04:34 +00:00
* Unpackage-ify jslib * Adjust .tsconfig path for root and apply to jslib * Rebuild package-lock.json * Disable husky in CI * Revert an incorrect find/replace * Add jslib/shared/.eslintrc rules to root eslintrc * Revert package.json change to ignore spec files when linting * Ensure custom matcher gets imported in jslib tests * Fix small workflow bugs from merging * Try and get CI builds moving again * Always sign and notorize builds in CI * Revert erroneous verion bump
10 lines
357 B
TypeScript
10 lines
357 B
TypeScript
import { ElectronLogService } from "@/jslib/electron/src/services/electronLog.service";
|
|
|
|
describe("ElectronLogService", () => {
|
|
it("sets dev based on electron method", () => {
|
|
process.env.ELECTRON_IS_DEV = "1";
|
|
const logService = new ElectronLogService();
|
|
expect(logService).toEqual(expect.objectContaining({ isDev: true }) as any);
|
|
});
|
|
});
|