diff --git a/packages/interop/src/connect/index.ts b/packages/interop/src/connect/index.ts index 6e8ebb112d..4558b8cb04 100644 --- a/packages/interop/src/connect/index.ts +++ b/packages/interop/src/connect/index.ts @@ -7,6 +7,11 @@ export function connectTests (factory: DaemonFactory): void { for (const typeA of nodeTypes) { for (const typeB of nodeTypes) { + // skip go-go tests + if (typeA === 'go' && typeB === 'go') { + continue + } + transportTypes.forEach(transport => { runConnectTests( transport, diff --git a/packages/interop/src/utils/test-matrix.ts b/packages/interop/src/utils/test-matrix.ts index 825421b6ed..b7978248cd 100644 --- a/packages/interop/src/utils/test-matrix.ts +++ b/packages/interop/src/utils/test-matrix.ts @@ -14,6 +14,11 @@ export function runTests (name: string, fn: TestFunction, factory: DaemonFactory for (const keyType of keyTypes) { for (const implA of impls) { for (const implB of impls) { + // skip go-go tests + if (implA === 'go' && implB === 'go') { + continue + } + for (const encrypter of encrypters) { // eslint-disable-next-line max-depth for (const muxer of muxers) {