AFFiNE/tests/invite-code-page.spec.ts
2023-02-01 13:07:35 +00:00

14 lines
401 B
TypeScript

import { test, expect } from '@playwright/test';
import { loadPage } from './libs/load-page.js';
loadPage();
// ps aux | grep 8080
test.skip('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();
});
});