From: Ben Noordhuis Date: Sun, 8 Jul 2012 14:37:45 +0000 (+0200) Subject: test: make test-fs-watch-file write to tmp dir X-Git-Tag: v0.8.3~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63c2391984b74bf04bc7f68e346e857ca9d63329;p=platform%2Fupstream%2Fnodejs.git test: make test-fs-watch-file write to tmp dir Write temp files to test/tmp, not test/fixtures. --- diff --git a/test/pummel/test-fs-watch-file.js b/test/pummel/test-fs-watch-file.js index f3c5f5b..4dddb25 100644 --- a/test/pummel/test-fs-watch-file.js +++ b/test/pummel/test-fs-watch-file.js @@ -29,7 +29,7 @@ var watchSeenTwo = 0; var watchSeenThree = 0; var startDir = process.cwd(); -var testDir = common.fixturesDir; +var testDir = common.tmpDir; var filenameOne = 'watch.txt'; var filepathOne = path.join(testDir, filenameOne);