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