AFFiNE/tests/parallels/invite-code-page.spec.ts
2023-04-16 16:02:41 -05:00

10 lines
304 B
TypeScript

import { expect } from '@playwright/test';
import { test } from '../libs/playwright';
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();
});