Headless CMS and Content Managment Hub
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.
 
 
 
 
 

18 lines
456 B

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { getRandomId, writeJsonAsync } from '../utils';
import { test as setup } from './../given-login/_fixture';
setup('prepare app', async ({ appsPage }) => {
const appName = `app-${getRandomId()}`;
await appsPage.createNewApp(appName);
await appsPage.gotoApp(appName);
await writeJsonAsync('app', { appName });
});