mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
* Prompting rescan hint within tx-table when no transactions appear * Animation of rescan part after being forwarded * Basics option added in test-cypress for faster development on cypress tests on slower machines * addWallet command added in Cypress * Page limit in addresses view fixed Co-authored-by: moneymanolis <moneymanolis@protonmail.com>
8 lines
307 B
JavaScript
8 lines
307 B
JavaScript
describe('Ghost machine', () => {
|
|
it('Create a DIY device with ghost machine keys and a wallet', () => {
|
|
cy.viewport(1200,660)
|
|
cy.visit('/')
|
|
cy.addDevice('DIY ghost', 'Specter-DIY', 'ghost_machine')
|
|
cy.addWallet('Ghost wallet', null, 'segwit', 'funded', 'btc')
|
|
})
|
|
})
|