Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: improve test coverage of internal/blob #41513

Merged
merged 7 commits into from
Apr 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove parens in throw statement
  • Loading branch information
kuriyosh committed Jan 29, 2022
commit 24fa55ec45156aabd93f19dccf0cf0506ad648a2
2 changes: 1 addition & 1 deletion test/parallel/test-blob.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ assert.throws(() => new Blob({}), {
code: 'ERR_BUFFER_TOO_LARGE',
});
} catch (e) {
if (e.message !== 'Array buffer allocation failed') throw (e);
if (e.message !== 'Array buffer allocation failed') throw e;
common.skip(
'Insufficient memory on this platform for oversized buffer test.'
);
Expand Down