@coinbase/onchaintestkit
Version:
End-to-end testing toolkit for blockchain applications, powered by Playwright
12 lines (11 loc) • 597 B
TypeScript
import { OnchainFixtures } from "../types";
import { NodeConfig } from "./types";
export declare class NodeFixturesBuilder {
private config;
constructor(config?: NodeConfig);
/**
* Creates a test fixture that manages a local Anvil node
* The node will be started before the test and stopped after
*/
build(): import("@playwright/test").TestType<import("@playwright/test").PlaywrightTestArgs & import("@playwright/test").PlaywrightTestOptions & OnchainFixtures, import("@playwright/test").PlaywrightWorkerArgs & import("@playwright/test").PlaywrightWorkerOptions>;
}