Ghost/ghost/core/test/e2e-browser/admin/setup.spec.js
Sam Lord ccbcba0969
Switched to a shared page for each playwright worker
refs: https://github.com/TryGhost/DevOps/issues/78

This speeds up the tests by another 30 seconds on my local machine, and
hopefully takes some time off in CI too
2023-10-16 15:32:13 +00:00

17 lines
581 B
JavaScript

const {expect} = require('@playwright/test');
const test = require('../fixtures/ghost-test');
test.describe('Admin', () => {
test.describe('Setup', () => {
test('Loads Admin', async ({sharedPage}) => {
const response = await sharedPage.goto('/ghost');
expect(response.status()).toEqual(200);
});
test('Is setup correctly', async ({sharedPage}) => {
await sharedPage.goto('/ghost');
await expect(sharedPage.locator('.gh-nav-menu-details-sitetitle')).toHaveText(/The Local Test/);
});
});
});