mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-7360] aca playwright e2e file name rename with .e2e.ts extension (#3738)
* [ACS-7360] authentication updated to e2e.ts * [ACS-7360] copy-move-actions tests updated to e2e.ts * [ACS-7360] create-actions tests updated to e2e.ts * [ACS-7360] folder-rules tests updated to e2e.ts * [ACS-7360] info-drawer tests updates to e2e.ts * [ACS-7360] library-actions tests updated to e2e.ts * [ACS_7360] list-views tests updated to e2e.ts * [ACS-7360] navigation tests updated to e2e.ts * [ACS-7360] pagination tests updated to e2e.ts * [ACS-7360] search tests updated to e2e.ts * [ACS-7360] share-actions tests updated to e2e.ts * [ACS-7360] special-permissions tests updated to e2e.ts * [ACS-7360] viewer tests updated to e2e.ts * [ACS-7360] replaced every .spec.ts and .test.ts with .e2e.ts * [ACS-7360] undo .spec.ts chages for non test files * [ACS-7360] hardcoded credentials sonarcloud fix 1 * [ACS-7360] hardcoded credentials sonarcloud fix 2
This commit is contained in:
@@ -30,7 +30,7 @@ test.describe('Create folders', () => {
|
||||
let randomFolderName: string;
|
||||
const sessionTestUser = {
|
||||
username: `user-${Utils.random()}`,
|
||||
password: 'user password'
|
||||
password: Utils.random()
|
||||
};
|
||||
|
||||
test.beforeAll(async () => {
|
@@ -31,6 +31,7 @@ test.describe('viewer file', () => {
|
||||
const otherLanguageUser = {
|
||||
/* cspell:disable-next-line */
|
||||
username: `пользвате${Utils.random()}`,
|
||||
/* cspell:disable-next-line */
|
||||
password: '密碼中國'
|
||||
};
|
||||
|
||||
@@ -45,7 +46,7 @@ test.describe('viewer file', () => {
|
||||
|
||||
const testUser2 = {
|
||||
username: `user-${Utils.random()}`,
|
||||
password: 'user2 password'
|
||||
password: Utils.random()
|
||||
};
|
||||
const newPassword = 'new password';
|
||||
|
@@ -29,8 +29,9 @@ test.describe('viewer file', () => {
|
||||
const apiClientFactory = new ApiClientFactory();
|
||||
const testUser = {
|
||||
username: `user-${Utils.random()}`,
|
||||
password: 'user password'
|
||||
password: Utils.random()
|
||||
};
|
||||
|
||||
test.beforeAll(async () => {
|
||||
await apiClientFactory.setUpAcaBackend('admin');
|
||||
await apiClientFactory.createUser(testUser);
|
Reference in New Issue
Block a user