From cc0556bd3e7ad4f6fdc5bf7ffb9b00bcd860fcbf Mon Sep 17 00:00:00 2001 From: JP Richardson Date: Sun, 19 Apr 2015 04:53:13 -0500 Subject: [PATCH] JSS --- test/copy/async/copy-gh-89.test.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/copy/async/copy-gh-89.test.js b/test/copy/async/copy-gh-89.test.js index 6346be0..7e30033 100644 --- a/test/copy/async/copy-gh-89.test.js +++ b/test/copy/async/copy-gh-89.test.js @@ -1,10 +1,9 @@ // relevant: https://github.com/jprichardson/node-fs-extra/issues/89 // come up with better file name -var assert = require('assert') var fs = require('fs') var path = require('path') -var os = require('os') +var os = require('os') var fse = require(process.cwd()) /* global afterEach, beforeEach, describe, it */ @@ -17,7 +16,7 @@ describe('copy / gh #89', function () { }) afterEach(function (done) { - fse.remove(DIR, done) + fse.remove(TEST_DIR, done) }) it('should...', function (done) { @@ -37,5 +36,7 @@ describe('copy / gh #89', function () { fs.writeFileSync(four, '4') // shit + // TODO: decide behavior + done() }) })