Releases: gemini-testing/testplane
Releases · gemini-testing/testplane
v8.19.1
v8.19.0
v8.18.0
v8.17.2
v8.17.1
v8.17.0
v8.16.0
🚀 Improvements
- implement ability to specify browser as passive (tests are not run in passive browsers by default) using option "passive" inside browser config. (#968)
- add "testplane.also.in" (must be specified before test or suite) controller to enable tests in passive browser (#968)
- add "enable" method for all runnables (previously, there was only
disable
method) (#968)
🐛 Bug fixes
- specify "browserId" as string for all runnables (previously, the type was specified as
string | undefined
) (#968)
v8.15.0
v8.14.1
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>;
}
}