europa-build
Version:
Tool for generating and maintaining Europa plugins and presets
16 lines (15 loc) • 625 B
TypeScript
import { CommandScriptProvider, CommandScriptProviderOptions } from "./CommandScriptProvider";
/**
* A {@link ScriptProvider} that runs a test suite against the package's source code using the Jasmine test framework.
*/
export declare class TestScriptProvider extends CommandScriptProvider {
/**
* Creates an instance of {@link TestScriptProvider} using the `options` provided.
*
* @param options - The options to be used.
*/
constructor(options: CommandScriptProviderOptions);
protected getLoggerName(): string;
getName(): string;
runScript(directoryPath: string): Promise<void>;
}