bitwarden-estensione-browser/libs/electron/spec/services/electronLog.service.spec.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
356 B
TypeScript
Raw Normal View History

2022-06-14 17:10:53 +02:00
import { ElectronLogService } from "@bitwarden/electron/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);
});
});