mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 09:14:26 +01:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
|
|
||
|
/// <reference types="cypress" />
|
||
|
declare namespace Cypress {
|
||
|
interface Chainable<Subject> {
|
||
|
waitForSkeletonGone(): Chainable<any>
|
||
|
waitForPageIdle(): Chainable<any>
|
||
|
mockMempoolSocket(): Chainable<any>
|
||
|
changeNetwork(network: "testnet"|"signet"|"liquid"|"bisq"|"mainnet"): Chainable<any>
|
||
|
}
|
||
|
}
|