2024-08-17 18:24:31 +00:00
|
|
|
// @ts-check
|
2024-09-11 20:34:33 +00:00
|
|
|
|
|
|
|
// @watch start
|
|
|
|
// templates/org/team/new.tmpl
|
|
|
|
// web_src/css/form.css
|
|
|
|
// web_src/js/features/org-team.js
|
|
|
|
// @watch end
|
|
|
|
|
2024-08-17 18:24:31 +00:00
|
|
|
import {expect} from '@playwright/test';
|
|
|
|
import {test, login_user, login} from './utils_e2e.js';
|
|
|
|
import {validate_form} from './shared/forms.js';
|
|
|
|
|
|
|
|
test.beforeAll(async ({browser}, workerInfo) => {
|
|
|
|
await login_user(browser, workerInfo, 'user2');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('org team settings', async ({browser}, workerInfo) => {
|
|
|
|
test.skip(workerInfo.project.name === 'Mobile Safari', 'Cannot get it to work - as usual');
|
|
|
|
const page = await login({browser}, workerInfo);
|
|
|
|
const response = await page.goto('/org/org3/teams/team1/edit');
|
2024-10-23 14:22:25 +00:00
|
|
|
expect(response?.status()).toBe(200);
|
2024-08-17 18:24:31 +00:00
|
|
|
|
|
|
|
await page.locator('input[name="permission"][value="admin"]').click();
|
2024-08-19 21:35:37 +00:00
|
|
|
await expect(page.locator('.hide-unless-checked')).toBeHidden();
|
2024-08-17 18:24:31 +00:00
|
|
|
|
|
|
|
await page.locator('input[name="permission"][value="read"]').click();
|
2024-08-19 21:35:37 +00:00
|
|
|
await expect(page.locator('.hide-unless-checked')).toBeVisible();
|
|
|
|
|
|
|
|
// we are validating the form here to include the part that could be hidden
|
|
|
|
await validate_form({page});
|
2024-08-17 18:24:31 +00:00
|
|
|
});
|