From dc08756c27e5471a4b8c84947c3f6c61a380d0a3 Mon Sep 17 00:00:00 2001 From: abetomo Date: Tue, 16 May 2017 10:20:43 +0900 Subject: [PATCH] Remove the cleaning process after the test Because there is no longer the process of creating the file in the temporary directory. --- test/main.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/main.js b/test/main.js index 0bc5e728..1b16f72a 100644 --- a/test/main.js +++ b/test/main.js @@ -56,11 +56,6 @@ describe('node-lambda', function () { program = Hoek.clone(originalProgram); }); - after(function () { - _timeout({ this: this, sec: 30 }); // give it time to remove - fs.removeSync(path.join(os.tmpdir(), `${program.functionName}-[0-9]*`)); - }); - it('version should be set', function () { assert.equal(lambda.version, '0.10.0'); });