Skip to content

Commit

Permalink
adding tests exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Oct 5, 2019
1 parent 60bed01 commit 2963c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function isConnectivityError(err) {
////////////////////////////////////////////////
// Does JSON.stringify, with support for BigInt
function toJson(data) {
// istanbul ignore next: Excluding from automatic tests, as it requires Node.js 10.4.0 and later
// istanbul ignore next: Excluding from tests, as BigInt requires Node.js 10.4.0 or later
return JSON.stringify(data, (_, val) => typeof val === 'bigint' ? val.toString() : val);
}

Expand Down

0 comments on commit 2963c32

Please sign in to comment.