v8.14.0
🚀 Improvements
- export
TestFunctionCtx
type (#958)
You can now extend it easily with module augmentation:
import type { TestFunctionCtx as TestplaneTestFunctionCtx } from "testplane";
declare module 'testplane' {
export interface TestFunctionCtx extends TestplaneTestFunctionCtx {
myFunc(var1: string, var2: number): Promise<void>;
}
}