actionhero
Version:
The reusable, scalable, and quick node.js API server for stateless and stateful applications
16 lines (15 loc) • 440 B
TypeScript
import { Initializer } from "../index";
export interface SpecHelperApi {
returnMetadata?: boolean;
Server?: any;
Connection?: any;
}
/**
* A special "mock" server which enables you to test actions and tasks in a simple way. Only available in the TEST environment.
*/
export declare class SpecHelper extends Initializer {
enabled: boolean;
constructor();
initialize(): Promise<void>;
start(): Promise<void>;
}