1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-02 00:23:22 +00:00

Changes after npm run prettier

This commit is contained in:
Daniel James Smith
2021-12-16 15:13:39 +01:00
parent 3b15f451d6
commit b73fbf75e3
495 changed files with 28253 additions and 26714 deletions

View File

@@ -1,9 +1,9 @@
import { ElectronLogService } from 'jslib-electron/services/electronLog.service';
import { ElectronLogService } from "jslib-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(jasmine.objectContaining({ isDev: true }) as any);
});
describe("ElectronLogService", () => {
it("sets dev based on electron method", () => {
process.env.ELECTRON_IS_DEV = "1";
const logService = new ElectronLogService();
expect(logService).toEqual(jasmine.objectContaining({ isDev: true }) as any);
});
});