mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
621 B
24 lines
621 B
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { test as setup } from '@playwright/test';
|
|
import { getRandomId, writeJsonAsync } from '../utils';
|
|
|
|
setup('prepare app', async ({ page }) => {
|
|
const appName = `my-app-${getRandomId()}`;
|
|
|
|
await page.goto('/app');
|
|
|
|
await page.getByTestId('new-app').click();
|
|
|
|
await page.locator('#name').fill(appName);
|
|
await page.getByRole('button', { name: 'Create' }).click();
|
|
|
|
await page.getByRole('heading', { name: appName }).click();
|
|
|
|
await writeJsonAsync('app', { appName });
|
|
});
|