Make aca-playwright-shared buildable and publishable (#4098)

* Make aca-playwright-shared buildable and publishable

* Small PR workflow fix
This commit is contained in:
MichalKinas
2024-09-04 18:24:46 +02:00
committed by GitHub
parent ea1fc8af03
commit 96df46a32a
141 changed files with 207 additions and 156 deletions

View File

@@ -22,8 +22,8 @@
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/
import { ApiClientFactory, FavoritesPageApi, PersonalFilesPage, NodesApi, TrashcanApi, Utils, test, timeouts } from '@alfresco/playwright-shared';
import * as testData from '@alfresco/playwright-shared';
import { ApiClientFactory, FavoritesPageApi, PersonalFilesPage, NodesApi, TrashcanApi, Utils, test, timeouts } from '@alfresco/aca-playwright-shared';
import * as testData from '@alfresco/aca-playwright-shared';
test.describe('Folders - available actions : ', () => {
const username = `user-${Utils.random()}`;

View File

@@ -22,8 +22,8 @@
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/
import { MyLibrariesPage, test, Utils } from '@alfresco/playwright-shared';
import * as testData from '@alfresco/playwright-shared';
import { MyLibrariesPage, test, Utils } from '@alfresco/aca-playwright-shared';
import * as testData from '@alfresco/aca-playwright-shared';
import { expect } from '@playwright/test';
async function checkActionsAvailable(

View File

@@ -22,7 +22,7 @@
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/
import * as testData from '@alfresco/playwright-shared';
import * as testData from '@alfresco/aca-playwright-shared';
import { viewerTests } from './viewer';
import { collaboratorTests, filesLockedByCurrentUser, filesLockedByOtherUser } from './other-permissions';
import {
@@ -37,7 +37,7 @@ import {
SearchPageApi,
timeouts,
Utils
} from '@alfresco/playwright-shared';
} from '@alfresco/aca-playwright-shared';
import { Site } from '@alfresco/js-api';
test.describe('Special permissions : ', () => {

View File

@@ -23,8 +23,8 @@
*/
import { expect } from '@playwright/test';
import { FavoritesPage, LoginPage, MyLibrariesPage, SearchPage, SharedPage, test } from '@alfresco/playwright-shared';
import * as testData from '@alfresco/playwright-shared';
import { FavoritesPage, LoginPage, MyLibrariesPage, SearchPage, SharedPage, test } from '@alfresco/aca-playwright-shared';
import * as testData from '@alfresco/aca-playwright-shared';
export function viewerTests(userConsumer: string, siteName: string) {
test.describe('Consumer available actions : ', () => {