@coinbase/onchaintestkit
Version:
End-to-end testing toolkit for blockchain applications, powered by Playwright
12 lines (11 loc) • 404 B
TypeScript
import type { Page } from "@playwright/test";
/**
* Confirms a transaction in the Phantom Wallet notification popup
* @param page - The notification page
*/
export declare const confirmEvent: (page: Page) => Promise<void>;
/**
* Rejects a transaction in the Phantom Wallet notification popup
* @param page - The notification page
*/
export declare const rejectEvent: (page: Page) => Promise<void>;