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.');
|
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);
|
const remoteServer = await startRemoteServer(kind);
|
||||||
|
|
||||||
let warning = null;
|
let warning = null;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue