0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/apps/admin-x-settings/test/e2e/general/titleAndDescription.test.ts
Daniel Lockyer 8c5e2a53a9 Moved Admin-X-Settings to apps/ folder
refs https://github.com/TryGhost/Toolbox/issues/594

- we're moving all the external apps into a different folder so we can
  keep `ghost/` for internal code
2023-06-23 14:37:39 +02:00

41 lines
1.6 KiB
TypeScript

import {expect, test} from '@playwright/test';
import {mockApi, updatedSettingsResponse} from '../../utils/e2e';
test.describe('Title and description settings', async () => {
test('Supports editing the title and description', async ({page}) => {
const lastApiRequests = await mockApi({page, responses: {
settings: {
edit: updatedSettingsResponse([
{key: 'title', value: 'New Site Title'},
{key: 'description', value: 'New Site Description'}
])
}
}});
await page.goto('/');
const section = page.getByTestId('title-and-description');
await expect(section.getByText('Test Site')).toHaveCount(1);
await expect(section.getByText('Thoughts, stories and ideas.')).toHaveCount(1);
await section.getByRole('button', {name: 'Edit'}).click();
await section.getByLabel('Site title').fill('New Site Title');
await section.getByLabel('Site description').fill('New Site Description');
await section.getByRole('button', {name: 'Save'}).click();
await expect(section.getByLabel('Site title')).toHaveCount(0);
await expect(section.getByText('New Site Title')).toHaveCount(1);
await expect(section.getByText('New Site Description')).toHaveCount(1);
expect(lastApiRequests.settings.edit.body).toEqual({
settings: [
{key: 'title', value: 'New Site Title'},
{key: 'description', value: 'New Site Description'}
]
});
});
});