Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
llc1123 committed Jun 26, 2023
1 parent 7023035 commit 72fac96
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion api/test/common/diag/logLevel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ describe('LogLevelFilter DiagLogger', () => {
ignoreFuncs: Array<keyof DiagLogger>;
}> = [
{ message: 'ALL', level: DiagLogLevel.ALL, ignoreFuncs: [] },
{ message: 'greater than ALL', level: 32768 as DiagLogLevel, ignoreFuncs: [] },
{
message: 'greater than ALL',
level: 32768 as DiagLogLevel,
ignoreFuncs: [],
},
{ message: 'VERBOSE', level: DiagLogLevel.VERBOSE, ignoreFuncs: [] },
{ message: 'DEBUG', level: DiagLogLevel.DEBUG, ignoreFuncs: ['verbose'] },
{
Expand Down

0 comments on commit 72fac96

Please sign in to comment.