mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 13:22:30 +03:00
16 lines
439 B
TypeScript
16 lines
439 B
TypeScript
import { expect } from '@playwright/test';
|
|
|
|
import { loadPage } from './libs/load-page';
|
|
import { test } from './libs/playwright';
|
|
|
|
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);
|
|
expect(page.getByText('The link has expired')).not.toBeUndefined();
|
|
});
|
|
});
|