Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
325 B · 14 lines
TypeScript
123456789101112131415export type TestEnv = { addr: string; internalAddr: string; privateKey: string; publicAddress: string; multibaseKey: string; testDuration: number; env: Record<string, string>;};
export type E2ETest = { setup?: (testEnv: TestEnv) => Promise<TestEnv>; test: (testEnv: TestEnv) => Promise<string | null>;};