mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
3d989eba23
refs https://github.com/TryGhost/Toolbox/issues/354 - this commit turns the Ghost repo into a monorepo so we can bring our internal packages back in, which makes life easier when working on Ghost
9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
const {expect, test} = require('@playwright/test');
|
|
|
|
let siteUrl = process.env.TEST_URL || 'http://localhost:2368';
|
|
|
|
test('Homepage is 200', async ({page}) => {
|
|
const response = await page.goto(siteUrl);
|
|
expect(response.status()).toEqual(200);
|
|
});
|