mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-6196] await-thenable rule for ESLint, fix issues (#9027)
* fix issues for core lib * fix content services lib * fix and cleanup process services * [ci:force] process services cloud * [ci:force] align coverage with all libs * [ci:force] fix the insights
This commit is contained in:
@@ -75,7 +75,7 @@ describe('Start Task - Task App', () => {
|
||||
await taskPage.tasksListPage().checkContentIsDisplayed('Standalone task');
|
||||
await taskPage.taskDetails().noFormIsDisplayed();
|
||||
|
||||
const taskDetails = await taskPage.taskDetails();
|
||||
const taskDetails = taskPage.taskDetails();
|
||||
await taskDetails.checkCompleteTaskButtonIsDisplayed();
|
||||
await taskDetails.checkCompleteTaskButtonIsEnabled();
|
||||
await taskPage.taskDetails().checkAttachFormButtonIsDisplayed();
|
||||
@@ -110,7 +110,7 @@ describe('Start Task - Task App', () => {
|
||||
await taskPage.formFields().noFormIsDisplayed();
|
||||
await taskPage.taskDetails().clickAttachFormButton();
|
||||
|
||||
const formFields = await taskPage.formFields();
|
||||
const formFields = taskPage.formFields();
|
||||
await formFields.selectForm(app.formName);
|
||||
await formFields.clickOnAttachFormButton();
|
||||
|
||||
@@ -122,7 +122,7 @@ describe('Start Task - Task App', () => {
|
||||
|
||||
it('[C268912] Should a standalone task be displayed when removing the form from APS', async () => {
|
||||
const task = await taskPage.createNewTask();
|
||||
const taskDetails = await taskPage.taskDetails();
|
||||
const taskDetails = taskPage.taskDetails();
|
||||
await task.addName('Remove form');
|
||||
await task.selectForm(app.formName);
|
||||
await task.clickStartButton();
|
||||
|
Reference in New Issue
Block a user