2024-04-25 11:44:29 +03:00
|
|
|
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('/');
|
|
|
|
|
2024-06-19 14:46:02 +03:00
|
|
|
await expect(page.locator('body')).toContainText('ActivityPub Inbox');
|
2024-04-25 11:44:29 +03:00
|
|
|
});
|
|
|
|
});
|