@coinbase/onchaintestkit
Version:
End-to-end testing toolkit for blockchain applications, powered by Playwright
16 lines (15 loc) • 797 B
TypeScript
import { Page } from "@playwright/test";
import { PhantomWallet } from ".";
import { LocalNodeManager } from "../../node/LocalNodeManager";
import { NodeConfig } from "../../node/types";
import { PhantomConfig } from "../types";
type PhantomFixturesType = {
_contextPath: string;
phantom: PhantomWallet;
extensionId: string;
phantomPage: Page;
setupWallet: null;
node: LocalNodeManager;
};
export declare function PhantomFixturesBuilder(walletConfig: PhantomConfig, nodeConfig: NodeConfig | undefined): import("@playwright/test").TestType<import("@playwright/test").PlaywrightTestArgs & import("@playwright/test").PlaywrightTestOptions & PhantomFixturesType, import("@playwright/test").PlaywrightWorkerArgs & import("@playwright/test").PlaywrightWorkerOptions>;
export {};