@types/karma-firefox-launcher
Version:
TypeScript definitions for karma-firefox-launcher
32 lines (28 loc) • 887 B
TypeScript
// Type definitions for karma-firefox-launcher 2.1
// Project: https://github.com/karma-runner/karma-firefox-launcher#readme
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.2
import 'karma';
declare module 'karma' {
interface CustomLauncher {
/**
* configure preferences for the Firefox instance that is loaded
*/
prefs?: {
[name: string]: any;
} | undefined;
/**
* extensions that you want loaded into the browser on startup
*/
extensions?: string[] | undefined;
/**
* custom launcher name
*/
name?: string | undefined;
/**
* location of the Firefox executable
*/
command?: string | undefined;
}
}