From 494dbea19c9cbea59152b7ba1309ab55eddda55d Mon Sep 17 00:00:00 2001 From: mrfelton Date: Sun, 2 Apr 2023 10:44:33 +0100 Subject: [PATCH] test: skip e2e tests requiring testnet4 node --- test/e2e/basic-ui.spec.js | 3 ++- test/e2e/onboarding-connect-btcpay.spec.js | 3 ++- test/e2e/onboarding-connect-lndconnect.spec.js | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/test/e2e/basic-ui.spec.js b/test/e2e/basic-ui.spec.js index 330ba7fbf09..93104fc8330 100644 --- a/test/e2e/basic-ui.spec.js +++ b/test/e2e/basic-ui.spec.js @@ -34,7 +34,8 @@ fixture('Basic wallet UI') await cleanElectronEnvironment(ctx) }) -test('provide access to basic wallet functionality', async t => { +// eslint-disable-next-line jest/no-disabled-tests +test.skip('provide access to basic wallet functionality', async t => { await t // Fill out and submit ConnectionType form. .expect(onboarding.connectionType.exists) diff --git a/test/e2e/onboarding-connect-btcpay.spec.js b/test/e2e/onboarding-connect-btcpay.spec.js index a5b17a08ece..cd21d4eaf11 100644 --- a/test/e2e/onboarding-connect-btcpay.spec.js +++ b/test/e2e/onboarding-connect-btcpay.spec.js @@ -26,7 +26,8 @@ fixture('Onboarding (connect btcpay)') await cleanElectronEnvironment(ctx) }) -test('should connect to an external wallet (btcpay)', async t => { +// eslint-disable-next-line jest/no-disabled-tests +test.skip('should connect to an external wallet (btcpay)', async t => { await t // Fill out and submit ConnectionType form. .expect(onboarding.connectionType.exists) diff --git a/test/e2e/onboarding-connect-lndconnect.spec.js b/test/e2e/onboarding-connect-lndconnect.spec.js index ac490c3fcf7..a5216f41e4e 100644 --- a/test/e2e/onboarding-connect-lndconnect.spec.js +++ b/test/e2e/onboarding-connect-lndconnect.spec.js @@ -26,7 +26,8 @@ fixture('Onboarding (connect lndconnect)') await cleanElectronEnvironment(ctx) }) -test('should connect to an external wallet (lndconnect)', async t => { +// eslint-disable-next-line jest/no-disabled-tests +test.skip('should connect to an external wallet (lndconnect)', async t => { await t // Fill out and submit ConnectionType form. .expect(onboarding.connectionType.exists)