From 670fc826eed150f54879b7242e2ad01fd45f46df Mon Sep 17 00:00:00 2001 From: Austen Collins Date: Sat, 22 Aug 2015 19:16:03 -0700 Subject: [PATCH] tests: remove test project folder --- tests/all.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/all.js b/tests/all.js index 9a11e7ac3..2ce012c33 100644 --- a/tests/all.js +++ b/tests/all.js @@ -20,7 +20,9 @@ describe('JAWS Tests', function() { after(function() { // Remove Test Project - del([process.env.TEST_PROJECT_DIR], function(err, paths) { + del([process.env.TEST_PROJECT_DIR], { + force: true + }, function(err, paths) { console.log('Tests Completed. Test project destroyed.'); }); });