-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: avoid nodejs console.timeEnd warning
- Loading branch information
1 parent
a6d78c7
commit 6cf6f6e
Showing
6 changed files
with
564 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* eslint-disable no-undef */ | ||
// eslint-disable-next-line strict | ||
const { is, ok, equal } = require('uvu/assert') | ||
const debug = require('debug')('app') | ||
const { good, bad } = require('./lib') | ||
const Client = require('../src/client') | ||
|
||
it.only('time/timeEnd', () => { | ||
console.time('test') | ||
console.timeEnd('test') | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.