Ghost/apps/admin-x-settings/test/e2e/email/mailgun.test.ts
Jono M c46761199b
Cleaned up AdminX API handling (#17571)
refs https://github.com/TryGhost/Product/issues/3349

- Simplified a few more places after switching to react-query
- Improved how mocking works in specs to be more scalable as the number
of queries increases
2023-08-03 09:29:14 +01:00

39 lines
1.4 KiB
TypeScript

import {expect, test} from '@playwright/test';
import {globalDataRequests, mockApi, updatedSettingsResponse} from '../../utils/e2e';
test.describe('Mailgun settings', async () => {
test('Supports setting up mailgun', async ({page}) => {
const {lastApiRequests} = await mockApi({page, requests: {
...globalDataRequests,
editSettings: {method: 'PUT', path: '/settings/', response: 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(lastApiRequests.editSettings?.body).toEqual({
settings: [
{key: 'mailgun_domain', value: 'test.com'},
{key: 'mailgun_api_key', value: 'test'}
]
});
});
});