mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
523 B
26 lines
523 B
process.mixin(require("../common"));
|
|
|
|
var fs = require("fs");
|
|
var path = require("path");
|
|
|
|
var f = path.join(fixturesDir, "x.txt");
|
|
var f2 = path.join(fixturesDir, "x2.txt");
|
|
|
|
puts("watching for changes of " + f);
|
|
|
|
var changes = 0;
|
|
fs.watchFile(f, function (curr, prev) {
|
|
puts(f + " change");
|
|
changes++;
|
|
assert.ok(curr.mtime != prev.mtime);
|
|
fs.unwatchFile(f);
|
|
});
|
|
|
|
|
|
var fd = fs.openSync(f, "w+");
|
|
fs.writeSync(fd, 'xyz\n');
|
|
fs.closeSync(fd);
|
|
|
|
process.addListener("exit", function () {
|
|
assert.ok(changes > 0);
|
|
});
|
|
|