v8.14.0
KuznetsovRoman
released this
25 Jun 10:36
·
135 commits
to master
since this release
🚀 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>;
}
}