7a3bbfde10
ref MOM61 - Adds admin-x react app we’ll use as ActivityPub playground to the sidebar nav behind the feature flag. - Wired up routing to Ember - Setup the project as `admin-x-activitypub` --------- Co-authored-by: Ronald Langeveld <hi@ronaldlangeveld.com>
11 lines
349 B
TypeScript
11 lines
349 B
TypeScript
import {expect, test} from '@playwright/test';
|
|
// import {mockApi, responseFixtures} from '@tryghost/admin-x-framework/test/acceptance';
|
|
|
|
test.describe('Demo', async () => {
|
|
test('Renders the list page', async ({page}) => {
|
|
await page.goto('/');
|
|
|
|
await expect(page.locator('body')).toContainText('ActivityPub Demo');
|
|
});
|
|
});
|