Unify hash url strategy (#5866)

* unify hash url startegy

* improve
This commit is contained in:
Eugenio Romano
2020-07-14 16:00:32 +01:00
committed by GitHub
parent 8ac683d164
commit d1672596ba
182 changed files with 476 additions and 520 deletions

View File

@@ -15,13 +15,13 @@
* limitations under the License.
*/
import { ApiService, IdentityService, AboutPage, LoginSSOPage } from '@alfresco/adf-testing';
import { ApiService, IdentityService, AboutPage, LoginPage } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
describe('About Process Services Cloud', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const aboutPage = new AboutPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, Application, AppListCloudPage, IdentityService, LocalStorageUtil, LoginSSOPage } from '@alfresco/adf-testing';
import { ApiService, Application, AppListCloudPage, IdentityService, LocalStorageUtil, LoginPage } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
@@ -23,7 +23,7 @@ describe('Applications list', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudPage = new AppListCloudPage();

View File

@@ -20,7 +20,7 @@ import {
AppListCloudPage,
GroupIdentityService,
IdentityService,
LoginSSOPage
LoginPage
} from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { ProcessCloudDemoPage } from '../pages/adf/demo-shell/process-services/process-cloud-demo.page';
@@ -32,7 +32,7 @@ describe('Edit process filters cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -20,7 +20,7 @@ import {
AppListCloudPage,
StringUtil,
ApiService,
LoginSSOPage,
LoginPage,
TasksService,
IdentityService,
GroupIdentityService
@@ -32,7 +32,7 @@ describe('Edit task filters cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -17,7 +17,7 @@
import {
ApiService, AppListCloudPage, GroupIdentityService, IdentityService,
LoginSSOPage, NotificationHistoryPage, ProcessCloudWidgetPage, ProcessDefinitionsService,
LoginPage, NotificationHistoryPage, ProcessCloudWidgetPage, ProcessDefinitionsService,
ProcessInstancesService, QueryService, TaskFormCloudComponent, TaskHeaderCloudPage,
TasksService
} from '@alfresco/adf-testing';
@@ -27,7 +27,7 @@ import { NavigationBarPage } from '../../pages/adf/navigation-bar.page';
describe('Form Field Component - Dropdown Widget', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -18,7 +18,7 @@
import {
FormCloudComponentPage,
FormPage,
LoginSSOPage,
LoginPage,
ProcessCloudWidgetPage
} from '@alfresco/adf-testing';
import { browser } from 'protractor';
@@ -36,7 +36,7 @@ import { NavigationBarPage } from '../../pages/adf/navigation-bar.page';
describe('People and Group of people Widgets', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const formCloudComponentPage = new FormCloudComponentPage();
const widget = new ProcessCloudWidgetPage();

View File

@@ -16,7 +16,7 @@
*/
import {
LoginSSOPage,
LoginPage,
AppListCloudPage,
IdentityService,
GroupIdentityService,
@@ -43,7 +43,7 @@ describe('Task cloud visibility', async () => {
const taskFormCloudComponent = new TaskFormCloudComponent();
const startProcessPage = new StartProcessCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const widget = new ProcessCloudWidgetPage();
const apiService = new ApiService();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { FormCloudComponentPage, LoginSSOPage, ProcessCloudWidgetPage } from '@alfresco/adf-testing';
import { FormCloudComponentPage, LoginPage, ProcessCloudWidgetPage } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { NavigationBarPage } from '../../pages/adf/navigation-bar.page';
@@ -25,7 +25,7 @@ import { tabFieldValueVisibilityJson, tabVarValueVisibilityJson, tabVarFieldVisi
describe('Visibility conditions on tabs - cloud', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const formCloudDemoPage = new FormCloudComponentPage();
const widget = new ProcessCloudWidgetPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { FormCloudComponentPage, LoginSSOPage, ProcessCloudWidgetPage } from '@alfresco/adf-testing';
import { FormCloudComponentPage, LoginPage, ProcessCloudWidgetPage } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { NavigationBarPage } from '../../pages/adf/navigation-bar.page';
@@ -26,7 +26,7 @@ import { dropdownVisibilityFormFieldJson, dropdownVisibilityFormVariableJson } f
describe('Visibility conditions - cloud', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const formCloudDemoPage = new FormCloudComponentPage();
const widget = new ProcessCloudWidgetPage();

View File

@@ -20,7 +20,7 @@ import {
GroupCloudComponentPage,
GroupIdentityService,
IdentityService,
LoginSSOPage,
LoginPage,
PeopleCloudComponentPage,
RolesService
} from '@alfresco/adf-testing';
@@ -32,7 +32,7 @@ describe('People Groups Cloud Component', () => {
describe('People Groups Cloud Component', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const peopleGroupCloudComponentPage = new PeopleGroupCloudComponentPage();
const peopleCloudComponent = new PeopleCloudComponentPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, GroupCloudComponentPage, GroupIdentityService, IdentityService, LoginSSOPage, PeopleCloudComponentPage } from '@alfresco/adf-testing';
import { ApiService, GroupCloudComponentPage, GroupIdentityService, IdentityService, LoginPage, PeopleCloudComponentPage } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { PeopleGroupCloudComponentPage } from '../pages/adf/demo-shell/process-services/people-group-cloud-component.page';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
@@ -24,7 +24,7 @@ describe('People Groups Cloud Component', () => {
describe('People Groups Cloud Component', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const peopleGroupCloudComponentPage = new PeopleGroupCloudComponentPage();
const peopleCloudComponent = new PeopleCloudComponentPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, AppListCloudPage, BrowserActions, GroupIdentityService, IdentityService, LocalStorageUtil, LoginSSOPage, ProcessDefinitionsService, ProcessInstancesService, QueryService, StringUtil, TasksService } from '@alfresco/adf-testing';
import { ApiService, AppListCloudPage, BrowserActions, GroupIdentityService, IdentityService, LocalStorageUtil, LoginPage, ProcessDefinitionsService, ProcessInstancesService, QueryService, StringUtil, TasksService } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { ProcessCloudDemoPage } from '../pages/adf/demo-shell/process-services/process-cloud-demo.page';
import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
@@ -27,7 +27,7 @@ describe('Process list cloud', () => {
describe('Process List', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -22,7 +22,7 @@ import {
GroupIdentityService,
IdentityService,
LocalStorageUtil,
LoginSSOPage,
LoginPage,
ProcessDefinitionsService,
ProcessInstancesService,
QueryService,
@@ -40,7 +40,7 @@ import moment = require('moment');
describe('Process filters cloud', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -19,7 +19,7 @@ import {
ApiService,
AppListCloudPage,
LocalStorageUtil,
LoginSSOPage,
LoginPage,
ProcessDefinitionsService,
ProcessInstancesService,
QueryService,
@@ -41,7 +41,7 @@ import {
describe('Process filters cloud', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -20,7 +20,7 @@ import {
AppListCloudPage,
GroupIdentityService,
IdentityService,
LoginSSOPage,
LoginPage,
StringUtil,
ProcessDefinitionsService,
ProcessInstancesService,
@@ -37,7 +37,7 @@ import CONSTANTS = require('../util/constants');
describe('Process filters cloud', () => {
describe('Process Filters', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, AppListCloudPage, GroupIdentityService, IdentityService, LoginSSOPage, ProcessDefinitionsService, ProcessHeaderCloudPage, ProcessInstancesService, QueryService, StringUtil, LocalStorageUtil } from '@alfresco/adf-testing';
import { ApiService, AppListCloudPage, GroupIdentityService, IdentityService, LoginPage, ProcessDefinitionsService, ProcessHeaderCloudPage, ProcessInstancesService, QueryService, StringUtil, LocalStorageUtil } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { ProcessCloudDemoPage } from '../pages/adf/demo-shell/process-services/process-cloud-demo.page';
import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
@@ -33,7 +33,7 @@ describe('Process Header cloud component', () => {
const processHeaderCloudPage = new ProcessHeaderCloudPage();
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -20,7 +20,7 @@ import {
AppListCloudPage,
GroupIdentityService,
IdentityService,
LoginSSOPage,
LoginPage,
ProcessDefinitionsService,
ProcessInstancesService,
StringUtil
@@ -37,7 +37,7 @@ describe('Process list cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, AppListCloudPage, GroupIdentityService, IdentityService, LoginSSOPage, ProcessDefinitionsService, ProcessInstancesService, LocalStorageUtil } from '@alfresco/adf-testing';
import { ApiService, AppListCloudPage, GroupIdentityService, IdentityService, LoginPage, ProcessDefinitionsService, ProcessInstancesService, LocalStorageUtil } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { ProcessCloudDemoPage } from '../pages/adf/demo-shell/process-services/process-cloud-demo.page';
import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
@@ -30,7 +30,7 @@ describe('Process list cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -20,7 +20,7 @@ import {
ApiService,
AppListCloudPage,
ContentNodeSelectorDialogPage,
LoginSSOPage,
LoginPage,
ProcessCloudWidgetPage,
ProcessDefinitionsService,
ProcessInstancesService,
@@ -36,7 +36,7 @@ import CONSTANTS = require('../util/constants');
describe('Process Task - Attach content file', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, AppListCloudPage, BrowserActions, GroupIdentityService, IdentityService, LoginSSOPage, StartProcessCloudPage, StringUtil } from '@alfresco/adf-testing';
import { ApiService, AppListCloudPage, BrowserActions, GroupIdentityService, IdentityService, LoginPage, StartProcessCloudPage, StringUtil } from '@alfresco/adf-testing';
import { browser, protractor } from 'protractor';
import { ProcessCloudDemoPage } from '../pages/adf/demo-shell/process-services/process-cloud-demo.page';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
@@ -23,7 +23,7 @@ import CONSTANTS = require('../util/constants');
describe('Start Process', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const processCloudDemoPage = new ProcessCloudDemoPage();

View File

@@ -19,7 +19,7 @@ import { browser, protractor } from 'protractor';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
import {
LoginSSOPage,
LoginPage,
AppListCloudPage,
StringUtil,
StartTasksCloudPage,
@@ -47,7 +47,7 @@ import CONSTANTS = require('../util/constants');
describe('Start Task Form', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const taskFormCloudComponent = new TaskFormCloudComponent();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();

View File

@@ -19,7 +19,7 @@ import { browser } from 'protractor';
import { NavigationBarPage } from '../../pages/adf/navigation-bar.page';
import { TasksCloudDemoPage } from '../../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
import {
LoginSSOPage,
LoginPage,
AppListCloudPage,
StringUtil,
TaskHeaderCloudPage,
@@ -35,7 +35,7 @@ describe('Start Task', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const taskHeaderCloudPage = new TaskHeaderCloudPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();

View File

@@ -19,7 +19,7 @@ import { browser } from 'protractor';
import { NavigationBarPage } from '../../pages/adf/navigation-bar.page';
import { TasksCloudDemoPage } from '../../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
import {
LoginSSOPage,
LoginPage,
AppListCloudPage,
StringUtil,
GroupCloudComponentPage,
@@ -35,7 +35,7 @@ describe('Start Task - Group Cloud Component', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -17,7 +17,7 @@
import { browser } from 'protractor';
import {
LoginSSOPage,
LoginPage,
TasksService,
ApiService,
AppListCloudPage,
@@ -35,7 +35,7 @@ describe('Task filters cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -20,7 +20,7 @@ import {
AppListCloudPage,
StringUtil,
ApiService,
LoginSSOPage,
LoginPage,
TasksService,
ProcessDefinitionsService,
ProcessInstancesService,
@@ -33,7 +33,7 @@ import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tas
describe('Task form cloud component', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -19,7 +19,7 @@ import { browser, protractor } from 'protractor';
import {
ApiService,
AppListCloudPage,
LoginSSOPage,
LoginPage,
ProcessCloudWidgetPage,
ProcessDefinitionsService,
ProcessInstancesService,
@@ -38,7 +38,7 @@ describe('Task form cloud component', () => {
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -22,7 +22,7 @@ import {
GroupIdentityService,
IdentityService,
LocalStorageUtil,
LoginSSOPage,
LoginPage,
StringUtil,
TaskHeaderCloudPage,
TasksService,
@@ -42,7 +42,7 @@ describe('Task Header cloud component', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { ApiService, AppListCloudPage, GroupIdentityService, IdentityService, LoginSSOPage, ProcessDefinitionsService, ProcessInstancesService, QueryService, TasksService } from '@alfresco/adf-testing';
import { ApiService, AppListCloudPage, GroupIdentityService, IdentityService, LoginPage, ProcessDefinitionsService, ProcessInstancesService, QueryService, TasksService } from '@alfresco/adf-testing';
import { browser } from 'protractor';
import { TasksCloudDemoPage } from '../pages/adf/demo-shell/process-services/tasks-cloud-demo.page';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
@@ -26,7 +26,7 @@ describe('Process list cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -18,7 +18,7 @@
import { browser } from 'protractor';
import {
StringUtil, TasksService,
LoginSSOPage, ApiService,
LoginPage, ApiService,
AppListCloudPage, LocalStorageUtil, IdentityService, GroupIdentityService
} from '@alfresco/adf-testing';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
@@ -27,7 +27,7 @@ import { TaskListCloudConfiguration } from './config/task-list-cloud.config';
describe('Edit task filters and task list properties', () => {
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -19,7 +19,7 @@ import { browser } from 'protractor';
import {
StringUtil, TasksService,
ProcessDefinitionsService, ProcessInstancesService,
LoginSSOPage, ApiService,
LoginPage, ApiService,
AppListCloudPage, LocalStorageUtil, IdentityService, GroupIdentityService, DateUtil
} from '@alfresco/adf-testing';
import { NavigationBarPage } from '../pages/adf/navigation-bar.page';
@@ -33,7 +33,7 @@ describe('Edit task filters and task list properties', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const candidateBaseApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -20,7 +20,7 @@ import {
AppListCloudPage,
GroupIdentityService,
IdentityService,
LoginSSOPage,
LoginPage,
StringUtil,
TasksService
} from '@alfresco/adf-testing';
@@ -34,7 +34,7 @@ describe('Task list cloud - selection', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -22,7 +22,7 @@ import {
GroupIdentityService,
IdentityService,
LocalStorageUtil,
LoginSSOPage,
LoginPage,
ProcessDefinitionsService,
ProcessInstancesService,
TaskFormCloudComponent,
@@ -37,7 +37,7 @@ describe('Task claim/release', () => {
const candidateApp = browser.params.resources.ACTIVITI_CLOUD_APPS.CANDIDATE_BASE_APP;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();

View File

@@ -23,7 +23,7 @@ import {
QueryService,
ProcessDefinitionsService,
ProcessInstancesService,
LoginSSOPage,
LoginPage,
ApiService,
IdentityService,
GroupIdentityService,
@@ -38,7 +38,7 @@ describe('Task filters cloud', () => {
const simpleApp = browser.params.resources.ACTIVITI_CLOUD_APPS.SIMPLE_APP.name;
const loginSSOPage = new LoginSSOPage();
const loginSSOPage = new LoginPage();
const navigationBarPage = new NavigationBarPage();
const appListCloudComponent = new AppListCloudPage();
const tasksCloudDemoPage = new TasksCloudDemoPage();