mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 06:08:50 +02:00
test: refactor test-fs-assert-encoding-error
Check that callbacks are not executed when errors are expected to be thrown. PR-URL: https://github.com/nodejs/node/pull/13226 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
758a17f1d5
commit
f00475d9d6
1 changed files with 8 additions and 8 deletions
|
@ -7,7 +7,7 @@ const options = 'test';
|
|||
const unknownEncodingMessage = /^Error: Unknown encoding: test$/;
|
||||
|
||||
assert.throws(() => {
|
||||
fs.readFile('path', options, common.noop);
|
||||
fs.readFile('path', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
@ -15,7 +15,7 @@ assert.throws(() => {
|
|||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.readdir('path', options, common.noop);
|
||||
fs.readdir('path', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
@ -23,7 +23,7 @@ assert.throws(() => {
|
|||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.readlink('path', options, common.noop);
|
||||
fs.readlink('path', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
@ -31,7 +31,7 @@ assert.throws(() => {
|
|||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.writeFile('path', 'data', options, common.noop);
|
||||
fs.writeFile('path', 'data', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
@ -39,7 +39,7 @@ assert.throws(() => {
|
|||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.appendFile('path', 'data', options, common.noop);
|
||||
fs.appendFile('path', 'data', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
@ -47,11 +47,11 @@ assert.throws(() => {
|
|||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.watch('path', options, common.noop);
|
||||
fs.watch('path', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.realpath('path', options, common.noop);
|
||||
fs.realpath('path', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
@ -59,7 +59,7 @@ assert.throws(() => {
|
|||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
fs.mkdtemp('path', options, common.noop);
|
||||
fs.mkdtemp('path', options, common.mustNotCall());
|
||||
}, unknownEncodingMessage);
|
||||
|
||||
assert.throws(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue