Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mhennoch committed Sep 19, 2024
1 parent 371e2d2 commit 27790e6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/metrics.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,13 @@ describe('metrics', () => {

await new Promise((resolve) => setTimeout(resolve, 10));
const stats2 = metrics.collect();
console.log(inspect(stats2, {showHidden: false, depth: null, colors: true}));
console.log(
inspect(stats2, { showHidden: false, depth: null, colors: true })
);
console.log('------------------------------');
console.log(inspect(stats, {showHidden: false, depth: null, colors: true}));
console.log(
inspect(stats, { showHidden: false, depth: null, colors: true })
);
assert.notDeepStrictEqual(stats2, stats);
});

Expand Down

0 comments on commit 27790e6

Please sign in to comment.