Live video on the AT Protocol
1export type TestEnv = {
2 addr: string;
3 internalAddr: string;
4 privateKey: string;
5 publicAddress: string;
6 multibaseKey: string;
7 testDuration: number;
8 env: Record<string, string>;
9};
10
11export type E2ETest = {
12 setup?: (testEnv: TestEnv) => Promise<TestEnv>;
13 test: (testEnv: TestEnv) => Promise<string | null>;
14};