2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-02-17 05:43:52 +03:00
|
|
|
import { loadPage } from './libs/load-page';
|
2023-02-17 10:33:32 +03:00
|
|
|
import { test } from './libs/playwright';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
|
|
|
loadPage();
|
|
|
|
|
|
|
|
// ps aux | grep 8080
|
2023-02-05 12:53:14 +03:00
|
|
|
test.describe('invite code page', () => {
|
2022-12-30 16:40:15 +03:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
});
|