Skip to content

Commit

Permalink
test: increase coverage for Blob
Browse files Browse the repository at this point in the history
Refs: https://coverage.nodejs.org/coverage-68e6673224365120/lib/internal/blob.js.html#L132

PR-URL: #38515
Backport-PR-URL: #39704
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
  • Loading branch information
Lxxyx authored and MylesBorins committed Aug 31, 2021
1 parent 9433c28 commit 922dace
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/parallel/test-blob.js
Expand Up @@ -3,6 +3,7 @@
const common = require('../common');
const assert = require('assert');
const { Blob } = require('buffer');
const { inspect } = require('util');
const { MessageChannel } = require('worker_threads');

{
Expand Down Expand Up @@ -191,3 +192,10 @@ assert.throws(() => new Blob({}), {
assert.strictEqual(text, 'test42');
}));
}

{
const b = new Blob();
assert.strictEqual(inspect(b, { depth: null }),
'Blob { size: 0, type: \'\' }');
assert.strictEqual(inspect(b, { depth: -1 }), '[Blob]');
}

0 comments on commit 922dace

Please sign in to comment.