UNPKG

@coinbase/onchaintestkit

Version:

End-to-end testing toolkit for blockchain applications, powered by Playwright

12 lines (11 loc) 418 B
import type { Page } from "@playwright/test"; /** * Confirms a transaction in the Coinbase Wallet notification popup * @param page - The notification page */ export declare const confirmTransaction: (page: Page) => Promise<void>; /** * Rejects a transaction in the Coinbase Wallet notification popup * @param page - The notification page */ export declare const rejectTransaction: (page: Page) => Promise<void>;