Changelog
v0.9.3 (2013-06-16)
karma-*
(405a5a62)console.*
log methods (683e6dcb)module.exports = function(karma) {
karma.configure({
autoWatch: true,
// ...
});
};
<a name="v0.9.2"></a>
Changelog
v0.9.0 (2013-04-03)
reporters, launchers, preprocessors, adapters are separate plugins now, in order to use them, you need to install the npm package (probably add it as a devDependency
into your package.json
) and load in the karma.conf.js
with plugins = ['karma-jasmine', ...]
. Karma ships with couple of default plugins (karma-jasmine, karma-chrome-launcher, karma-phantomjs-launcher).
frameworks (such as jasmine, mocha, qunit) are configured using frameworks = ['jasmine'];
instead of prepending JASMINE_ADAPTER
into files.
<a name="v0.8.0"></a>