mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-11 12:33:45 +03:00
test: skip connecting 20 times on non-linux (#23239)
This commit is contained in:
parent
fd75b85510
commit
b1db4a8191
@ -457,7 +457,9 @@ for (const kind of ['launchServer', 'run-server'] as const) {
|
||||
expect(error.message).toContain('Path is not available when connecting remotely. Use saveAs() to save a local copy.');
|
||||
});
|
||||
|
||||
test('should be able to connect 20 times to a single server without warnings', async ({ connect, startRemoteServer }) => {
|
||||
test('should be able to connect 20 times to a single server without warnings', async ({ connect, startRemoteServer, platform }) => {
|
||||
test.skip(platform !== 'linux', 'Testing non-platform specific code');
|
||||
|
||||
const remoteServer = await startRemoteServer(kind);
|
||||
|
||||
let warning = null;
|
||||
|
Loading…
Reference in New Issue
Block a user