karma-nightmare
Version:
A Karma plugin. Launcher for Nightmare
9 lines (7 loc) • 322 B
TypeScript
/// <reference path="types/electron.d.ts" />
declare module "karma-nightmare" {
export function screenshot(path: string): Promise<void>;
export function saveHtml(path: string, saveType?: string): Promise<void>;
export function isNightmare(): boolean;
export function getCurrentWindow(): Electron.BrowserWindow;
}