mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
ff1efa6087
PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
18 lines
498 B
JavaScript
18 lines
498 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
var filename = path.join(common.tmpDir, 'watched');
|
|
fs.writeFileSync(filename, 'quis custodiet ipsos custodes');
|
|
setTimeout(fs.unlinkSync, 100, filename);
|
|
|
|
fs.watchFile(filename, { interval: 50 }, common.mustCall(function(curr, prev) {
|
|
assert.equal(prev.nlink, 1);
|
|
assert.equal(curr.nlink, 0);
|
|
fs.unwatchFile(filename);
|
|
}));
|