mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-01 14:41:32 +00:00
* fix sso, change timeout, parallel * cange travis * move name apps in resources file * resources fix * resources fix * add sleep before search group * add possibility to extend duration of snack-bar message from configuration * fix unit test * fix unit test * remove timeout * change timeout * decrease message time * add lint main branch travis * reduce timeout * add new check application presence * change permission script fix search selector * fix travis conf * check app environment and upload the app if abbsent * fix cloud test * remove duplicate * restore ps test * restore resources file * fix e2e test * process with variables missing * test new conf travis * fix lint * fix spellcheck * remove duplicate module * fix ps module * fix travis conf * change check activiti env * add concept of processes in resources
43 lines
1.7 KiB
TypeScript
43 lines
1.7 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2019 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { LoginSSOPage, SettingsPage } from '@alfresco/adf-testing';
|
|
import { AppListCloudPage } from '@alfresco/adf-testing';
|
|
import TestConfig = require('../test.config');
|
|
import { NavigationBarPage } from '../pages/adf/navigationBarPage';
|
|
import resources = require('../util/resources');
|
|
|
|
describe('Applications list', () => {
|
|
|
|
const settingsPage = new SettingsPage();
|
|
const loginSSOPage = new LoginSSOPage();
|
|
const navigationBarPage = new NavigationBarPage();
|
|
const appListCloudPage = new AppListCloudPage();
|
|
const simpleApp = resources.ACTIVITI7_APPS.SIMPLE_APP.name;
|
|
|
|
it('[C289910] Should the app be displayed on dashboard when is deployed on APS', () => {
|
|
settingsPage.setProviderBpmSso(TestConfig.adf.hostBPM, TestConfig.adf.hostSso, TestConfig.adf.hostIdentity);
|
|
loginSSOPage.loginSSOIdentityService(TestConfig.adf.adminEmail, TestConfig.adf.adminPassword);
|
|
navigationBarPage.navigateToProcessServicesCloudPage();
|
|
appListCloudPage.checkApsContainer();
|
|
appListCloudPage.checkAppIsDisplayed(simpleApp);
|
|
appListCloudPage.goToApp(simpleApp);
|
|
|
|
});
|
|
|
|
});
|