Ensure that Utilities(Backup/Restore/Maintenence/Import-Export) should not be started

if binary path is wrong and also added 'Stop Process' button to cancel the process.
This commit is contained in:
Akshay Joshi
2018-10-22 12:35:21 +05:30
parent 370df47042
commit 6bc6bc7f60
49 changed files with 731 additions and 101 deletions

View File

@@ -385,7 +385,7 @@ describe('BackupDialogWrapper', () => {
networkMock.onPost('/backup/job/10').reply((request) => {
dataSentToServer = request.data;
return [200, {}];
return [200, {'success': 1}];
});
});
@@ -485,7 +485,7 @@ describe('BackupDialogWrapper', () => {
networkMock.onPost('/backup/job/10/object').reply((request) => {
dataSentToServer = request.data;
return [200, {}];
return [200, {'success': 1}];
});
});