@wix-pilot/core
Version:
A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)
10 lines (9 loc) • 373 B
TypeScript
import { TestContextConfig } from "../../types/core";
/**
* Test context that provides information about the current test execution environment.
* Handles defaults internally so consumers always get working functionality.
*/
export declare class TestContext {
readonly getCurrentTestFilePath: () => string | undefined;
constructor(config?: TestContextConfig);
}