Bugfix: Wallet creation timeout, RPC error when deleting wallet and sync messages (#2250)

* higher timeout for wallet creation
* Fix raising RPC error when deleting a wallet
* remove sync notifications
This commit is contained in:
Manolis Mandrapilias 2023-02-23 18:57:17 +01:00 committed by GitHub
parent d538eb5fd7
commit 4b677bb7e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 30 deletions

View file

@ -53,11 +53,7 @@ describe('Connecting nodes', () => {
it('Check sync status of Bitcoin Core node', () => {
cy.intercept("GET", "/nodes/sync_status/", {'fullySynced': false});
cy.visit('/')
cy.contains('Your Bitcoin node is syncing.')
cy.get('[data-cy="unfinished-sync-indicator"]').should('be.visible')
// The message should only pop up once per session
cy.visit('/')
cy.contains('Your Bitcoin node is syncing.').should('not.exist');
})
})