mirror of
https://github.com/bitwarden/browser
synced 2025-12-30 07:03:26 +00:00
* Rename service-factory folder * Move cryptographic service factories * Move crypto models * Move crypto services * Move domain base class * Platform code owners * Move desktop log services * Move log files * Establish component library ownership * Move background listeners * Move background background * Move localization to Platform * Move browser alarms to Platform * Move browser state to Platform * Move CLI state to Platform * Move Desktop native concerns to Platform * Move flag and misc to Platform * Lint fixes * Move electron state to platform * Move web state to Platform * Move lib state to Platform * Fix broken tests * Rename interface to idiomatic TS * `npm run prettier` 🤖 * Resolve review feedback * Set platform as owners of web core and shared * Expand moved services * Fix test types --------- Co-authored-by: Hinton <hinton@users.noreply.github.com>
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { interceptConsole, restoreConsole } from "@bitwarden/common/spec";
|
|
|
|
import { ConsoleLogService } from "./console-log.service";
|
|
|
|
let caughtMessage: any = {};
|
|
|
|
describe("CLI Console log service", () => {
|
|
let logService: ConsoleLogService;
|
|
beforeEach(() => {
|
|
caughtMessage = {};
|
|
interceptConsole(caughtMessage);
|
|
logService = new ConsoleLogService(true);
|
|
});
|
|
|
|
afterAll(() => {
|
|
restoreConsole();
|
|
});
|
|
|
|
it("should redirect all console to error if BW_RESPONSE env is true", () => {
|
|
process.env.BW_RESPONSE = "true";
|
|
|
|
logService.debug("this is a debug message");
|
|
expect(caughtMessage).toMatchObject({
|
|
error: { 0: "this is a debug message" },
|
|
});
|
|
});
|
|
|
|
it("should not redirect console to error if BW_RESPONSE != true", () => {
|
|
process.env.BW_RESPONSE = "false";
|
|
|
|
logService.debug("debug");
|
|
logService.info("info");
|
|
logService.warning("warning");
|
|
logService.error("error");
|
|
|
|
expect(caughtMessage).toMatchObject({
|
|
log: { 0: "info" },
|
|
warn: { 0: "warning" },
|
|
error: { 0: "error" },
|
|
});
|
|
});
|
|
});
|