Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
test: skip e2e tests requiring testnet4 node
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Apr 2, 2023
1 parent da142f9 commit 494dbea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/e2e/basic-ui.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion test/e2e/onboarding-connect-btcpay.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 2 additions & 1 deletion test/e2e/onboarding-connect-lndconnect.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 494dbea

Please sign in to comment.