mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
ed2828861c
no ref These are flaky on CI this week and we're not currently making use of this demo.
18 lines
579 B
TypeScript
18 lines
579 B
TypeScript
import {expect, test} from '@playwright/test';
|
|
import {mockApi, responseFixtures} from '@tryghost/admin-x-framework/test/acceptance';
|
|
|
|
test.describe.skip('Demo', async () => {
|
|
test('Renders the list page', async ({page}) => {
|
|
await mockApi({page, requests: {
|
|
browseSettings: {
|
|
method: 'GET',
|
|
path: /^\/settings\/\?group=/,
|
|
response: responseFixtures.settings
|
|
}
|
|
}});
|
|
|
|
await page.goto('/');
|
|
|
|
await expect(page.locator('body')).toContainText('AdminX Demo App');
|
|
});
|
|
});
|