mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 10:01:43 +03:00
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import { expect } from '@playwright/test';
|
|
|
|
import { test } from '../libs/playwright';
|
|
|
|
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();
|
|
});
|
|
});
|