mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import {expect, test} from '@playwright/test';
|
|
import {mockApi, updatedSettingsResponse} from '../../utils/e2e';
|
|
|
|
test.describe('Mailgun settings', async () => {
|
|
test('Supports setting up mailgun', async ({page}) => {
|
|
const lastApiRequest = await mockApi({page, responses: {
|
|
settings: {
|
|
edit: updatedSettingsResponse([
|
|
{key: 'mailgun_domain', value: 'test.com'},
|
|
{key: 'mailgun_api_key', value: 'test'}
|
|
])
|
|
}
|
|
}});
|
|
|
|
await page.goto('/');
|
|
|
|
const section = page.getByTestId('mailgun');
|
|
|
|
await expect(section.getByText('Mailgun is not set up')).toHaveCount(1);
|
|
|
|
await section.getByRole('button', {name: 'Edit'}).click();
|
|
|
|
await section.getByLabel('Mailgun domain').fill('test.com');
|
|
await section.getByLabel('Mailgun private API key').fill('test');
|
|
|
|
await section.getByRole('button', {name: 'Save'}).click();
|
|
|
|
await expect(section.getByLabel('Mailgun domain')).toHaveCount(0);
|
|
|
|
await expect(section.getByText('Mailgun is set up')).toHaveCount(1);
|
|
|
|
expect(lastApiRequest.body).toEqual({
|
|
settings: [
|
|
{key: 'mailgun_domain', value: 'test.com'},
|
|
{key: 'mailgun_api_key', value: 'test'}
|
|
]
|
|
});
|
|
});
|
|
});
|