Add debug to storage_localfilesystem test

This commit is contained in:
Nick O'Leary 2014-03-31 14:15:10 +01:00
parent 22db06046b
commit 1bdfd920cd
1 changed files with 3 additions and 0 deletions

View File

@ -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() {