-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #1553 PORT-PR-URL: #1560 PORT-FROM: v2.x / f9c681c Reviewed-By: Colin Ihrig <[email protected]>
- Loading branch information
1 parent
898d423
commit 4030545
Showing
2 changed files
with
14 additions
and
1 deletion.
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
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 @@ | ||
const common = require('../common'); | ||
const fs = require('fs'); | ||
const assert = require('assert'); | ||
|
||
assert.throws(function() { | ||
fs.write(null, new Buffer(1), 0, 1); | ||
}, /TypeError/); | ||
|
||
assert.throws(function() { | ||
fs.write(null, '1', 0, 1); | ||
}, /TypeError/); |