Skip to content

Commit

Permalink
feat: support using custom registry #70
Browse files Browse the repository at this point in the history
  • Loading branch information
regevbr committed May 9, 2020
1 parent 8da5acc commit 55b9b1f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/src/utils/logger/impl/logLevel.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ describe(`log level`, () => {
expect(getConoslaLogLevel(LogLevel.DEBUG)).toEqual(ConsolaLogLevel.Debug);
expect(getConoslaLogLevel(LogLevel.TRACE)).toEqual(ConsolaLogLevel.Trace);
expect(getConoslaLogLevel(LogLevel.SILENT)).toEqual(-ConsolaLogLevel.Silent);
expect(getConoslaLogLevel(LogLevel.VERBOSE)).toEqual(ConsolaLogLevel.Silent);
});
});
});

0 comments on commit 55b9b1f

Please sign in to comment.