mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
Fix test cases for UI
This commit is contained in:
@@ -52,8 +52,11 @@ function getFlowFilename() {
|
||||
}
|
||||
|
||||
function cleanup(flowFile) {
|
||||
deleteFile(homeDir+"/"+flowFile);
|
||||
deleteFile(homeDir+"/."+flowFile+".backup");
|
||||
var credentialFile = flowFile.replace(/\.json$/, '') + '_cred.json';
|
||||
deleteFile(homeDir + "/" + flowFile);
|
||||
deleteFile(homeDir + "/." + flowFile + ".backup");
|
||||
deleteFile(homeDir + "/" + credentialFile);
|
||||
deleteFile(homeDir + "/." + credentialFile + ".backup");
|
||||
}
|
||||
|
||||
function deleteFile(flowFile) {
|
||||
|
Reference in New Issue
Block a user