Skip to content
Closed
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
Next Next commit
test: add regex argument to assert throw in /test/parallel/test-zlib-…
…write-after-close.js
  • Loading branch information
Jason Wilson committed Feb 21, 2017
commit 63221a17b3ef2a5f5671cb7ecaeae3901c3227f1
9 changes: 6 additions & 3 deletions test/parallel/test-zlib-write-after-close.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ const zlib = require('zlib');
zlib.gzip('hello', common.mustCall(function(err, out) {
const unzip = zlib.createGunzip();
unzip.close(common.mustCall(function() {}));
assert.throws(function() {
unzip.write(out);
});
assert.throws(
function() {
unzip.write(out);
},
/^Error: zlib binding closed$/
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this could be updated to use the new common.expectsError()

);
}));