mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Replaced manual login and context loading across tests with Playwright's `test.use` configuration for user authentication. This simplifies test setup, improves readability, and reduces repetition. For #6362 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6400 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Julian Schlarb <julian.schlarb@denktmit.de> Co-committed-by: Julian Schlarb <julian.schlarb@denktmit.de>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			998 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			998 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
// @watch start
 | 
						|
// templates/org/team/new.tmpl
 | 
						|
// web_src/css/form.css
 | 
						|
// web_src/js/features/org-team.js
 | 
						|
// @watch end
 | 
						|
 | 
						|
import {expect} from '@playwright/test';
 | 
						|
import {save_visual, test} from './utils_e2e.ts';
 | 
						|
import {validate_form} from './shared/forms.ts';
 | 
						|
 | 
						|
test.use({user: 'user2'});
 | 
						|
 | 
						|
test('org team settings', async ({page}, workerInfo) => {
 | 
						|
  test.skip(workerInfo.project.name === 'Mobile Safari', 'Cannot get it to work - as usual');
 | 
						|
  const response = await page.goto('/org/org3/teams/team1/edit');
 | 
						|
  expect(response?.status()).toBe(200);
 | 
						|
 | 
						|
  await page.locator('input[name="permission"][value="admin"]').click();
 | 
						|
  await expect(page.locator('.hide-unless-checked')).toBeHidden();
 | 
						|
  await save_visual(page);
 | 
						|
 | 
						|
  await page.locator('input[name="permission"][value="read"]').click();
 | 
						|
  await expect(page.locator('.hide-unless-checked')).toBeVisible();
 | 
						|
  await save_visual(page);
 | 
						|
 | 
						|
  // we are validating the form here to include the part that could be hidden
 | 
						|
  await validate_form({page});
 | 
						|
});
 |