From 1bdfd920cd507bf8957f6b6292cec10bd6d0d274 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Mon, 31 Mar 2014 14:15:10 +0100 Subject: [PATCH] Add debug to storage_localfilesystem test --- test/storage_localfilesystem_spec.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/storage_localfilesystem_spec.js b/test/storage_localfilesystem_spec.js index f0946e3d1..ebd2531e6 100644 --- a/test/storage_localfilesystem_spec.js +++ b/test/storage_localfilesystem_spec.js @@ -8,9 +8,12 @@ describe('LocalFileSystem', function() { var userDir = path.join(__dirname,".testUserHome"); var testFlow = [{"type":"tab","id":"d8be2a6d.2741d8","label":"Sheet 1"}]; beforeEach(function() { + console.log(userDir); if (fs.existsSync(userDir)) { + console.log("deleting"); fs.removeSync(userDir) } + console.log("making"); fs.mkdirSync(userDir); }); afterEach(function() {