[karma] Add concurrency property to config options.

This commit is contained in:
Péter Kovács
2017-04-04 17:09:17 +02:00
committed by GitHub
parent 2b391022e4
commit 0d28bd1b5f

View File

@@ -205,6 +205,14 @@ declare namespace karma {
* @description Enable or disable colors in the output (reporters and logs).
*/
colors?: boolean;
/**
* @default 'Infinity'
* @description How many browsers Karma launches in parallel.
* Especially on services like SauceLabs and Browserstack, it makes sense only to launch a limited
* amount of browsers at once, and only start more when those have finished. Using this configuration,
* you can specify how many browsers should be running at once at any given point in time.
*/
concurrency?: number;
/**
* @default []
* @description List of files/patterns to exclude from loaded files.