test: selectively disable selenium tests (#21741)
https://github.com/microsoft/playwright/issues/21733
This commit is contained in:
parent
50dd04ae61
commit
36a1055524
|
|
@ -18,7 +18,6 @@ import path from 'path';
|
||||||
import { test } from './npmTest';
|
import { test } from './npmTest';
|
||||||
|
|
||||||
test('connect to selenium', async ({ exec, tmpWorkspace }, testInfo) => {
|
test('connect to selenium', async ({ exec, tmpWorkspace }, testInfo) => {
|
||||||
test.fixme(true, 'https://github.com/microsoft/playwright/issues/21733');
|
|
||||||
test.skip(os.platform() !== 'linux');
|
test.skip(os.platform() !== 'linux');
|
||||||
|
|
||||||
await exec('npm i --foreground-scripts playwright-core');
|
await exec('npm i --foreground-scripts playwright-core');
|
||||||
|
|
|
||||||
|
|
@ -94,6 +94,7 @@ test('selenium grid 3.141.59 hub + node chromium', async ({ browserName, childPr
|
||||||
});
|
});
|
||||||
|
|
||||||
test('selenium grid 4.4.0 standalone chromium', async ({ browserName, childProcess, waitForPort, browserType }, testInfo) => {
|
test('selenium grid 4.4.0 standalone chromium', async ({ browserName, childProcess, waitForPort, browserType }, testInfo) => {
|
||||||
|
test.fixme(true, 'https://github.com/microsoft/playwright/issues/21733');
|
||||||
test.skip(browserName !== 'chromium');
|
test.skip(browserName !== 'chromium');
|
||||||
|
|
||||||
const port = testInfo.workerIndex + 15123;
|
const port = testInfo.workerIndex + 15123;
|
||||||
|
|
@ -117,6 +118,7 @@ test('selenium grid 4.4.0 standalone chromium', async ({ browserName, childProce
|
||||||
});
|
});
|
||||||
|
|
||||||
test('selenium grid 4.4.0 hub + node chromium', async ({ browserName, childProcess, waitForPort, browserType }, testInfo) => {
|
test('selenium grid 4.4.0 hub + node chromium', async ({ browserName, childProcess, waitForPort, browserType }, testInfo) => {
|
||||||
|
test.fixme(true, 'https://github.com/microsoft/playwright/issues/21733');
|
||||||
test.skip(browserName !== 'chromium');
|
test.skip(browserName !== 'chromium');
|
||||||
|
|
||||||
const port = testInfo.workerIndex + 15123;
|
const port = testInfo.workerIndex + 15123;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue