mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Use hash strategy in demo shell as the other apps (#6402)
* hash startegy * use hash in e2e * trigger build * fix * fix * remove children router overwrite crazynes * Update login.module.ts * revert not needed changes * some fixes * fix * remove fdescribe * fix * fix * Update share-file.e2e.ts * Update lock-file.e2e.ts * Update share-file.e2e.ts * some fix * some other fixes * username as id * fix after rebase * username * fix usernamee * Fix the errorComponent * Attempt to fix unit test - to check * * Fixed circular dependency error while building adf-testing package * * Fixed failing UT * fix * use username * some fixes * some fix * fix Co-authored-by: Maurizio Vitale <maurizio.vitale@alfresco.com> Co-authored-by: Vito Albano <vitoalbano@vitoalbano-mbp-0120.local> Co-authored-by: sivakumar414ram <siva.kumar@muraai.com>
This commit is contained in:
@@ -144,7 +144,7 @@ exports.config = {
|
||||
|
||||
directConnect: !SELENIUM_SERVER,
|
||||
|
||||
baseUrl: HOST,
|
||||
baseUrl: HOST + '/#',
|
||||
|
||||
params: {
|
||||
testConfig: testConfig,
|
||||
@@ -201,7 +201,7 @@ exports.config = {
|
||||
const outputDirectory = process.env.SMART_RUNNER_DIRECTORY;
|
||||
console.log(`SmartRunner's repoHash: "${repoHash}"`);
|
||||
console.log(`SmartRunner's outputDirectory: "${outputDirectory}"`);
|
||||
SmartRunner.apply({ outputDirectory, repoHash });
|
||||
SmartRunner.apply({outputDirectory, repoHash});
|
||||
}
|
||||
|
||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = TIMEOUT;
|
||||
@@ -238,7 +238,7 @@ exports.config = {
|
||||
await browser.driver.executeScript(disableCSSAnimation);
|
||||
|
||||
// @ts-ignore
|
||||
await browser.get(`${HOST}/settings`);
|
||||
await browser.get(`${HOST}/#/settings`);
|
||||
await LocalStorageUtil.clearStorage();
|
||||
// @ts-ignore
|
||||
await LocalStorageUtil.setStorageItem('ecmHost', browser.params.testConfig.appConfig.ecmHost);
|
||||
@@ -246,7 +246,7 @@ exports.config = {
|
||||
await LocalStorageUtil.setStorageItem('bpmHost', browser.params.testConfig.appConfig.bpmHost);
|
||||
// @ts-ignore
|
||||
await LocalStorageUtil.setStorageItem('providers', browser.params.testConfig.appConfig.provider);
|
||||
await LocalStorageUtil.setStorageItem('baseShareUrl', HOST);
|
||||
await LocalStorageUtil.setStorageItem('baseShareUrl', `${HOST}/#`);
|
||||
|
||||
// @ts-ignore
|
||||
await LocalStorageUtil.setStorageItem('authType', browser.params.testConfig.appConfig.authType);
|
||||
|
Reference in New Issue
Block a user