test: re-add headless-new fixme's (#33426)
This commit is contained in:
parent
b148ce1ad1
commit
4560686427
|
|
@ -104,8 +104,7 @@ it('should change document.activeElement', async ({ page, server }) => {
|
||||||
it('should not affect screenshots', async ({ page, server, browserName, headless, isWindows, channel }) => {
|
it('should not affect screenshots', async ({ page, server, browserName, headless, isWindows, channel }) => {
|
||||||
it.skip(browserName === 'webkit' && isWindows && !headless, 'WebKit/Windows/headed has a larger minimal viewport. See https://github.com/microsoft/playwright/issues/22616');
|
it.skip(browserName === 'webkit' && isWindows && !headless, 'WebKit/Windows/headed has a larger minimal viewport. See https://github.com/microsoft/playwright/issues/22616');
|
||||||
it.skip(browserName === 'firefox' && !headless, 'Firefox headed produces a different image');
|
it.skip(browserName === 'firefox' && !headless, 'Firefox headed produces a different image');
|
||||||
// TODO: We want to see test results
|
it.fixme(browserName === 'chromium' && channel !== 'chromium-headless-shell', 'https://github.com/microsoft/playwright/issues/33330');
|
||||||
// it.fixme(browserName === 'chromium' && channel !== 'chromium-headless-shell', 'https://github.com/microsoft/playwright/issues/33330');
|
|
||||||
|
|
||||||
const page2 = await page.context().newPage();
|
const page2 = await page.context().newPage();
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
|
|
|
||||||
|
|
@ -23,8 +23,7 @@ browserTest.describe('page screenshot', () => {
|
||||||
browserTest.skip(({ browserName, headless }) => browserName === 'firefox' && !headless, 'Firefox headed produces a different image.');
|
browserTest.skip(({ browserName, headless }) => browserName === 'firefox' && !headless, 'Firefox headed produces a different image.');
|
||||||
|
|
||||||
browserTest('should run in parallel in multiple pages', async ({ server, contextFactory, browserName, channel }) => {
|
browserTest('should run in parallel in multiple pages', async ({ server, contextFactory, browserName, channel }) => {
|
||||||
// TODO: We want to see test results
|
browserTest.fixme(browserName === 'chromium' && channel !== 'chromium-headless-shell', 'https://github.com/microsoft/playwright/issues/33330');
|
||||||
// browserTest.fixme(browserName === 'chromium' && channel !== 'chromium-headless-shell', 'https://github.com/microsoft/playwright/issues/33330');
|
|
||||||
const context = await contextFactory();
|
const context = await contextFactory();
|
||||||
const N = 5;
|
const N = 5;
|
||||||
const pages = await Promise.all(Array(N).fill(0).map(async () => {
|
const pages = await Promise.all(Array(N).fill(0).map(async () => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue