mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 17:10:40 +00:00

Move ENOENT related tests out of general fs.watch() test file and into its own file. This may help diagnose https://github.com/nodejs/node/issues/3541. PR-URL: https://github.com/nodejs/node/pull/3548 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
22 lines
581 B
JavaScript
22 lines
581 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
|
|
assert.throws(function() {
|
|
fs.watch('non-existent-file');
|
|
}, function(err) {
|
|
assert(err);
|
|
assert(/non-existent-file/.test(err));
|
|
assert.equal(err.filename, 'non-existent-file');
|
|
return true;
|
|
});
|
|
|
|
const watcher = fs.watch(__filename);
|
|
watcher.on('error', common.mustCall(function(err) {
|
|
assert(err);
|
|
assert(/non-existent-file/.test(err));
|
|
assert.equal(err.filename, 'non-existent-file');
|
|
}));
|
|
watcher._handle.onchange(-1, 'ENOENT', 'non-existent-file');
|