Skip to content

v8.14.0

Compare
Choose a tag to compare
@KuznetsovRoman KuznetsovRoman released this 25 Jun 10:36
· 95 commits to master since this release
145321b

🚀 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>;
    }
}