[ADF-4715][ADF-4717] fix process-filter-results random failing tests (#4888)

* [ADF-4715] a process never has CREATED status

* [ADF-4717] clean up in afterAll

* check mediumDate format

* check mediumDate format

* show more log data

* Revert "show more log data"

This reverts commit a19c629
This commit is contained in:
Suzana Dirla
2019-07-03 11:48:14 +03:00
committed by Eugenio Romano
parent e03799e038
commit a13196a836
7 changed files with 15 additions and 11 deletions

View File

@@ -40,7 +40,7 @@ export class ProcessInstancesService {
} catch (error) {
// tslint:disable-next-line:no-console
console.log('create process-instances Service not working');
console.log('create process-instances Service not working', error.message);
}
}
@@ -56,7 +56,7 @@ export class ProcessInstancesService {
} catch (error) {
// tslint:disable-next-line:no-console
console.log('suspend process-instances Service not working');
console.log('suspend process-instances Service not working', error.message);
}
}
@@ -71,7 +71,7 @@ export class ProcessInstancesService {
} catch (error) {
// tslint:disable-next-line:no-console
console.log('delete process-instances Service not working');
console.log('delete process-instances Service not working', error.message);
}
}
@@ -87,7 +87,7 @@ export class ProcessInstancesService {
} catch (error) {
// tslint:disable-next-line:no-console
console.log('complete process-instances Service not working');
console.log('complete process-instances Service not working', error.message);
}
}
}