60 lines
2.2 KiB
TypeScript
60 lines
2.2 KiB
TypeScript
|
|
import { test, expect } from '@playwright/test';
|
||
|
|
|
||
|
|
import { clickEverythingOnPage } from '../../helpers/click-everything';
|
||
|
|
import { login, navigateTo, PORT_SLUG } from '../smoke/helpers';
|
||
|
|
|
||
|
|
test.describe('exhaustive: companies', () => {
|
||
|
|
test.beforeEach(async ({ page }) => {
|
||
|
|
await login(page, 'super_admin');
|
||
|
|
});
|
||
|
|
|
||
|
|
test('list page', async ({ page }) => {
|
||
|
|
await navigateTo(page, '/companies');
|
||
|
|
await page.waitForLoadState('networkidle');
|
||
|
|
|
||
|
|
const result = await clickEverythingOnPage(page);
|
||
|
|
expect(result.errors, JSON.stringify(result.errors, null, 2)).toEqual([]);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('detail page — every tab and button', async ({ page }) => {
|
||
|
|
await navigateTo(page, '/companies');
|
||
|
|
await page.waitForLoadState('networkidle');
|
||
|
|
|
||
|
|
const firstRow = page.locator('tbody tr a, tbody tr button').first();
|
||
|
|
if (!(await firstRow.isVisible({ timeout: 3000 }).catch(() => false))) {
|
||
|
|
test.skip(true, 'no companies seeded');
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
await firstRow.click();
|
||
|
|
await page.waitForURL(new RegExp(`/${PORT_SLUG}/companies/[^/]+`), { timeout: 10_000 });
|
||
|
|
await page.waitForLoadState('networkidle');
|
||
|
|
|
||
|
|
const result = await clickEverythingOnPage(page);
|
||
|
|
expect(result.errors, JSON.stringify(result.errors, null, 2)).toEqual([]);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('add-membership dialog opens and closes', async ({ page }) => {
|
||
|
|
await navigateTo(page, '/companies');
|
||
|
|
await page.waitForLoadState('networkidle');
|
||
|
|
const firstRow = page.locator('tbody tr a, tbody tr button').first();
|
||
|
|
if (!(await firstRow.isVisible({ timeout: 3000 }).catch(() => false))) {
|
||
|
|
test.skip(true, 'no companies seeded');
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
await firstRow.click();
|
||
|
|
await page.waitForLoadState('networkidle');
|
||
|
|
|
||
|
|
const addMember = page
|
||
|
|
.getByRole('button', { name: /add member|add membership|link client/i })
|
||
|
|
.first();
|
||
|
|
if (await addMember.isVisible({ timeout: 3000 }).catch(() => false)) {
|
||
|
|
await addMember.click();
|
||
|
|
const dialog = page.getByRole('dialog');
|
||
|
|
await expect(dialog).toBeVisible({ timeout: 5000 });
|
||
|
|
const cancel = dialog.getByRole('button', { name: /cancel|close/i }).first();
|
||
|
|
await cancel.click();
|
||
|
|
await expect(dialog).toBeHidden({ timeout: 5000 });
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|