mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 20:03:12 +03:00
Fixed browser tests (#19852)
no issue - browser tests were failing due to the renaming of a button
This commit is contained in:
parent
9d9707e6f4
commit
59bbade630
@ -96,10 +96,10 @@ const setupStripe = async (page, stripConnectIntegrationToken) => {
|
||||
await expect(modal.getByRole('button', {name: 'Disconnect'})).toBeVisible();
|
||||
await modal.getByRole('button', {name: 'Close'}).click();
|
||||
|
||||
await page.getByRole('button', {name: '← Done'}).click();
|
||||
await page.getByTestId('exit-settings').click();
|
||||
};
|
||||
|
||||
// Setup Mailgun with fake data, for Ghost Admin to allow bulk sending
|
||||
// Setup Mailgun with fake data for Ghost Admin to allow bulk sending
|
||||
const setupMailgun = async (page) => {
|
||||
await page.locator('.gh-nav a[href="#/settings/"]').click();
|
||||
const section = page.getByTestId('mailgun');
|
||||
@ -110,7 +110,7 @@ const setupMailgun = async (page) => {
|
||||
await section.getByRole('button', {name: 'Save'}).click();
|
||||
await section.getByText('Mailgun is set up').waitFor();
|
||||
|
||||
await page.getByRole('button', {name: '← Done'}).click();
|
||||
await page.getByTestId('exit-settings').click();
|
||||
};
|
||||
|
||||
/**
|
||||
@ -127,7 +127,7 @@ const enableLabs = async (page) => {
|
||||
await section.getByLabel('Webmentions').click();
|
||||
await section.getByLabel('Tips & donations').click();
|
||||
|
||||
await page.getByRole('button', {name: '← Done'}).click();
|
||||
await page.getByTestId('exit-settings').click();
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user