2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-04-22 04:44:29 +03:00
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
|
|
|
|
import { openHomePage, webUrl } from '../libs/load-page';
|
|
|
|
import { waitMarkdownImported } from '../libs/page-logic';
|
|
|
|
|
|
|
|
test('goto not found page', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitMarkdownImported(page);
|
|
|
|
const currentUrl = page.url();
|
|
|
|
const invalidUrl = currentUrl.replace(/\/$/, '') + '/invalid';
|
|
|
|
await page.goto(invalidUrl);
|
|
|
|
expect(await page.getByTestId('notFound').isVisible()).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('goto not found workspace', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
|
|
|
await waitMarkdownImported(page);
|
|
|
|
const currentUrl = page.url();
|
|
|
|
await page.goto(new URL('/workspace/invalid/all', webUrl).toString());
|
2023-05-12 08:55:45 +03:00
|
|
|
await page.waitForSelector('v-line');
|
2023-04-22 04:44:29 +03:00
|
|
|
expect(page.url()).toEqual(currentUrl);
|
|
|
|
});
|