mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 01:56:27 +08:00
17 lines
427 B
TypeScript
17 lines
427 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
import { loadPage } from './libs/load-page';
|
|
|
|
loadPage();
|
|
|
|
// ps aux | grep 8080
|
|
test.describe('invite code page', () => {
|
|
test('the link has expired', async ({ page }) => {
|
|
await page.goto('http://localhost:8080//invite/abc');
|
|
await page.waitForTimeout(1000);
|
|
|
|
await expect(
|
|
await page.getByText('The link has expired')
|
|
).not.toBeUndefined();
|
|
});
|
|
});
|