2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
import { test } from './libs/playwright.js';
|
2023-01-09 07:20:53 +03:00
|
|
|
import { loadPage } from './libs/load-page.js';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
|
|
|
loadPage();
|
|
|
|
|
|
|
|
// ps aux | grep 8080
|
2023-02-05 12:53:14 +03:00
|
|
|
test.describe('exception page', () => {
|
2022-12-30 16:40:15 +03:00
|
|
|
test('visit 404 page', async ({ page }) => {
|
|
|
|
await page.goto('http://localhost:8080/404');
|
2023-02-06 12:00:21 +03:00
|
|
|
const notFoundTip = page.locator('[data-testid=notFound]');
|
|
|
|
await expect(notFoundTip).toBeVisible();
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
|
|
|
});
|