In order to serve you well, Karma needs to know about your project in order to test it
and this is done via a configuration file. The easiest way to generate an initial configuration file
is by using the karma init
command. This page lists all of the available configuration options.
The Karma configuration file can be written in JavaScript or CoffeeScript and is loaded as a regular Node.js module.
Unless provided as argument, the Karma CLI will look for a configuration file at
./karma.conf.js
./karma.conf.coffee
./.config/karma.conf.js
./.config/karma.conf.coffee
in that order.
Within the configuration file, the configuration code is put together by setting module.exports
to point to a function
which accepts one argument: the configuration object.
// karma.conf.js
module.exports = function(config) {
config.set({
basePath: '../..',
frameworks: ['jasmine'],
//...
});
};
# karma.conf.coffee
module.exports = (config) ->
config.set
basePath: '../..'
frameworks: ['jasmine']
# ...
All of the configuration options, which specify file paths, use the minimatch library to facilitate flexible but concise file expressions so you can easily list all of the files you want to include and exclude.
You can find details about each configuration option in the section below. The following options utilize minimatch expressions:
exclude
files
preprocessors
Examples:
**/*.js
: All files with a "js" extension in all subdirectories**/!(jquery).js
: Same as previous, but excludes "jquery.js"**/(foo|bar).js
: In all subdirectories, all "foo.js" or "bar.js" filesThese are all of the available configuration options.
Type: Boolean
Default: true
CLI: --auto-watch
, --no-auto-watch
Description: Enable or disable watching files and executing the tests whenever one of these files changes.
Type: Number
Default: 250
Description: When Karma is watching the files for changes, it tries to batch multiple changes into a single run so that the test runner doesn't try to start and restart running tests more than it should. The configuration setting tells Karma how long to wait (in milliseconds) after any changes have occurred before starting the test process again.
Type: String
Default: ''
Description: The root path location that will be used to resolve all relative
paths defined in files
and exclude
. If the basePath
configuration is a
relative path then it will be resolved to the __dirname
of the configuration file.
Type: Number
Default: 2000
Description: How long does Karma wait for a browser to reconnect (in ms).
With a flaky connection it is pretty common that the browser disconnects, but the actual test execution is still running
without any problems. Karma does not treat a disconnection as immediate failure and will wait browserDisconnectTimeout
(ms).
If the browser reconnects during that time, everything is fine.
Type: Number
Default: 0
Description: The number of disconnections tolerated.
The disconnectTolerance
value represents the maximum number of tries a browser will attempt in the case of a disconnection.
Usually any disconnection is considered a failure, but this option allows you to define a tolerance level when there is
a flaky network link between the Karma server and the browsers.
Type: Number
Default: 10000
Description: How long will Karma wait for a message from a browser before disconnecting from it (in ms).
If, during test execution, Karma does not receive any message from a browser within browserNoActivityTimeout
(ms), it will disconnect from the browser.
Type: Array
Default: []
CLI: --browsers Chrome,Firefox
Possible Values:
Chrome
(launcher comes installed with Karma)ChromeCanary
(launcher comes installed with Karma)PhantomJS
(launcher comes installed with Karma)Firefox
(launcher requires karma-firefox-launcher plugin)Opera
(launcher requires karma-opera-launcher plugin)IE
(launcher requires karma-ie-launcher plugin)Safari
(launcher requires karma-safari-launcher plugin)Description: A list of browsers to launch and capture. When Karma starts up, it will also start up each browser
which is placed within this setting. Once Karma is shut down, it will shut down these
browsers as well. You can capture any browser manually by opening the browser and visiting the URL where
the Karma web server is listening (by default it is http://localhost:9876/
).
See config/browsers for more information. Additional launchers can be defined through plugins.
Type: Number
Default: 60000
Description: Timeout for capturing a browser (in ms).
The captureTimeout
value represents the maximum boot-up time allowed for a browser to start and connect to Karma.
If any browser does not get captured within the timeout, Karma will kill it and try to launch
it again and, after three attempts to capture it, Karma will give up.
Type: Array
Default: undefined
CLI: All arguments after --
(only when using karma run
)
Description: When karma run
is passed additional arguments on the command-line, they
are passed through to the test adapter as karma.config.args
(an array of strings).
The client.args
option allows you to set this value for actions other than run
.
How this value is used is up to your test adapter - you should check your adapter's documentation to see how (and if) it uses this value.
Type: Boolean
Default: true
Description: Run the tests inside an iFrame or a new window
If true, Karma runs the tests inside an iFrame. If false, Karma runs the tests in a new window. Some tests may not run in an iFrame and may need a new window to run.
Type: Boolean
Default: true
Description: Capture all console output and pipe it to the terminal.
Type: Boolean
Default: true
Description: Clear the context window
If true, Karma clears the context window upon the completion of running the tests. If false, Karma does not clear the context window upon the completion of running the tests. Setting this to false is useful when embedding a Jasmine Spec Runner Template.
Type: Boolean
Default: true
CLI: --colors
, --no-colors
Description: Enable or disable colors in the output (reporters and logs).
Type: Number
Default: Infinity
Description: How many browser Karma launches in parallel.
Especially on sevices like SauceLabs and Browserstack it makes sense to only launch a limited amount of browsers at once, and only start more when those have finished. Using this configuration you can sepcify how many browsers should be running at once at any given point in time.
Type: Array
Default: undefined
Description Custom HTTP headers that will be set upon serving files by Karma's web server. Custom headers are useful, especially with upcoming browser features like Service Workers.
The customHeaders
option allows you to set HTTP headers for files that match a regular expression.
customHeaders
is an array of Objects
with properties as follows:
Example:
customHeaders: [{
match: '.*foo.html',
name: 'Service-Worker-Allowed',
value: '/'
}]
Type: Array
Default: []
Description: List of files/patterns to exclude from loaded files.
Type: Boolean
Default: true
CLI: --fail-on-empty-test-suite
, --no-fail-on-empty-test-suite
Description: Enable or disable failure on running empty test-suites. If disabled the program
will return exit-code 0
and display a warning.
Type: Array
Default: []
Description: List of files/patterns to load in the browser.
See config/files for more information.
Type: Boolean
Default: false
Description: Force socket.io to use JSONP polling instead of XHR polling.
Type: Array
Default: []
Description: List of test frameworks you want to use. Typically, you will set this to ['jasmine']
, ['mocha']
or ['qunit']
...
Please note just about all frameworks in Karma require an additional plugin/framework library to be installed (via NPM).
Additional information can be found in plugins.
Type: String
Default: 'localhost'
Description: Hostname to be used when capturing browsers.
Type: Object
Default: {}
Description: Options object to be used by Node's https
class.
Object description can be found in the NodeJS.org API docs
Example:
httpsServerOptions: {
key: fs.readFileSync('server.key', 'utf8'),
cert: fs.readFileSync('server.crt', 'utf8')
},
Type: Constant
Default: config.LOG_INFO
CLI: --log-level debug
Possible values:
config.LOG_DISABLE
config.LOG_ERROR
config.LOG_WARN
config.LOG_INFO
config.LOG_DEBUG
Description: Level of logging.
Type: Array
Default: [{type: 'console'}]
Description: A list of log appenders to be used. See the documentation for log4js for more information.
Type: Array
Default: []
Description: List of names of additional middleware you want the karma server to use. Middleware will be used in the order listed.
You must have installed the middleware via a plugin/framework (either inline or via NPM). Additional information can be found in plugins.
The plugin must provide an express/connect middleware function (details about this can be found in the Express docs. An example of custom inline middleware is shown below.
Example:
var CustomMiddlewareFactory = function (config) {
return function (request, response, /* next */) {
response.writeHead(200)
return response.end("content!")
}
}
middleware: ['custom']
plugins: [
{'middleware:custom': ['factory', CustomMiddlewareFactory]}
...
]
Type: Object
Default: {}
Description: Redefine default mapping from file extensions to MIME-type
Set property name to required MIME, provide Array of extensions (without dots) as it's value
Example:
mime: {
'text/x-typescript': ['ts','tsx']
'text/plain' : ['mytxt']
}
Type: Array
Default: ['karma-*']
Description: List of plugins to load. A plugin can be a string (in which case it will be required by Karma) or an inlined plugin - Object.
By default, Karma loads all sibling NPM modules which have a name starting with karma-*
.
See plugins for more information.
Type: Number
Default: 9876
CLI: --port 9876
Description: The port where the web server will be listening.
Type: Object
Default: {'**/*.coffee': 'coffee'}
Description: A map of preprocessors to use.
Preprocessors can be loaded through plugins.
Be aware that preprocessors may be transforming the files and file types that are available at run time. For instance, if you are using the "coverage" preprocessor on your source files, if you then attempt to interactively debug your tests, you'll discover that your expected source code is completely changed from what you expected. Because of that, you'll want to engineer this so that your automated builds use the coverage entry in the "reporters" list, but your interactive debugging does not.
Click here for more information.
Type: String
Default: 'http:'
Possible Values:
http:
https:
Description: Protocol used for running the Karma webserver.
Determines the use of the Node http
or https
class.
'https:'
requires you to specify httpsServerOptions
.Type: Object
Default: {}
Description: A map of path-proxy pairs.
The proxy can be specified directly by the target url or path, or with an object to configure more options. The available options are:
target
The target url or path (mandatory)changeOrigin
Whether or not the proxy should override the Host header using the host from the target (default false
)Example:
proxies: {
'/static': 'http://gstatic.com',
'/web': 'http://localhost:9000',
'/img/': '/base/test/images/',
'/proxyfied': {
'target': 'http://myserver.localhost',
'changeOrigin': true
}
},
Type: Boolean
Default: true
Description: Whether or not Karma or any browsers should raise an error when an invalid SSL certificate is found.
Type: Number
Default: 0
Description: Karma will report all the tests that are slower than given time limit (in ms). This is disabled by default (since the default value is 0).
Type: Array
Default: ['progress']
CLI: --reporters progress,growl
Possible Values:
dots
progress
Description: A list of reporters to use.
Additional reporters, such as growl
, junit
, teamcity
or coverage
can be loaded through plugins.
Type: Boolean
Default: false
Description: When Karma is watching the files for changes, it will delay a new run until the current run is finished. Enabling this setting will cancel the current run and start a new run immediately when a change is detected.
Type: Number
Default: 2
Description: When a browser crashes, karma will try to relaunch. This defines how many times karma should relaunch a browser before giving up.
Type: Boolean
Default: false
CLI: --single-run
, no-single-run
Description: Continuous Integration mode.
If true
, Karma will start and capture all configured browsers, run tests and then exit with an exit code of 0
or 1
depending
on whether all tests passed or any tests failed.
Type: Array
Default: ['polling', 'websocket']
Description: An array of allowed transport methods between the browser and testing server. This configuration setting is handed off to socket.io (which manages the communication between browsers and the testing server).
Type: String
Default: '/'
Description: The base url, where Karma runs.
All of Karma's urls get prefixed with the urlRoot
. This is helpful when using proxies, as
sometimes you might want to proxy a url that is already taken by Karma.