mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add debug to storage_localfilesystem test
This commit is contained in:
parent
22db06046b
commit
1bdfd920cd
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user