mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	[v12.0/forgejo] chore: disable E2E test for webkit (#8616)
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/8611 As far as I can see and tell, the newest webkit version contains a regression that makes this specific test fail. The screenshots that are uploaded upon failure do not seem to suggest that this test should fail. Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8616 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
This commit is contained in:
		
					parent
					
						
							
								5dc9f86f09
							
						
					
				
			
			
				commit
				
					
						927dfb4f50
					
				
			
		
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -5,7 +5,8 @@
 | 
				
			||||||
import {expect} from '@playwright/test';
 | 
					import {expect} from '@playwright/test';
 | 
				
			||||||
import {save_visual, test} from './utils_e2e.ts';
 | 
					import {save_visual, test} from './utils_e2e.ts';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
test('markup with #xyz-mode-only', async ({page}) => {
 | 
					test('markup with #xyz-mode-only', async ({page}, workerInfo) => {
 | 
				
			||||||
 | 
					  test.skip(['webkit', 'Mobile Safari'].includes(workerInfo.project.name), 'Newest version contains a regression');
 | 
				
			||||||
  const response = await page.goto('/user2/repo1/issues/1');
 | 
					  const response = await page.goto('/user2/repo1/issues/1');
 | 
				
			||||||
  expect(response?.status()).toBe(200);
 | 
					  expect(response?.status()).toBe(200);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue