UNPKG

319 BJavaScriptView Raw
1/**
2 * Test case for runKarma.
3 * Runs with nodeunit.
4 */
5
6var runKarma = require('../lib/run_karma.js'),
7 conf = require.resolve('../docs/mockups/mock-karma.conf.js');
8
9exports['Run karma'] = function (test) {
10 runKarma('start', conf, function (err) {
11 test.ifError(err);
12 test.done();
13 });
14};
15