Merge pull request #1568 from jfirebaugh/karma

testacular -> karma
This commit is contained in:
Vladimir Agafonkin 2013-04-03 14:38:15 -07:00
commit b84be89095
4 changed files with 15 additions and 12 deletions

View File

@ -156,16 +156,19 @@ exports.build = function (compsBase32, buildName) {
};
exports.test = function() {
var testacular = require('testacular'),
testConfig = {configFile : __dirname + '/../spec/testacular.conf.js'};
var karma = require('karma'),
testConfig = {configFile : __dirname + '/../spec/karma.conf.js'};
testConfig.browsers = ['PhantomJS'];
isArgv('--chrome') && testConfig.browsers.push('Chrome');
isArgv('--ff') && testConfig.browsers.push('Firefox');
// will work only with new testacular that supports code coverage (today it's in master)
if (isArgv('--cov')) { // temporary hack until testacular with coverage becomes stable
testacular = require('../node_modules/testacular/lib/index.js'); // use local testacular
if (isArgv('--chrome')) {
testConfig.browsers.push('Chrome');
}
if (isArgv('--ff')) {
testConfig.browsers.push('Firefox');
}
if (isArgv('--cov')) {
testConfig.preprocessors = {
'**/src/**/*.js': 'coverage',
};
@ -176,9 +179,9 @@ exports.test = function() {
testConfig.reporters = ['coverage'];
}
testacular.server.start(testConfig);
karma.server.start(testConfig);
function isArgv(optName){
function isArgv(optName) {
return process.argv.indexOf(optName) !== -1;
}
}

View File

@ -4,7 +4,7 @@
"description": "JavaScript library for mobile-friendly interactive maps",
"devDependencies": {
"jshint": "~1.1.0",
"testacular": "~0.6.0",
"karma": "~0.8.0",
"uglify-js": "~2.2.5",
"jake": "~0.5.10"
},

View File

@ -1,4 +1,4 @@
// Testacular configuration
// Karma configuration
var libSources = require(__dirname+'/../build/build.js').getFiles();
// base path, that will be used to resolve files and exclude
@ -13,7 +13,7 @@ files = [].concat([
JASMINE,
JASMINE_ADAPTER,
"before.js",
"testacular.js"
"karma.js"
], libSources, [
"after.js",
"happen.js",