Use phantomjs when running a single test

This commit is contained in:
Richard van der Hoff
2016-03-29 00:12:59 +01:00
parent 5f3b82a767
commit 04561ea6e6
2 changed files with 20 additions and 15 deletions
+8 -4
View File
@@ -1,16 +1,20 @@
// karma.conf.js
// karma.conf.js - the config file for karma, which runs our tests.
var webpack = require('webpack');
var path = require('path');
/*
* It's a pain to have to wait for webpack to build everything; however it's
* the easiest way to load our dependencies from node_modules.
* We use webpack to build our tests. It's a pain to have to wait for webpack
* to build everything; however it's the easiest way to load our dependencies
* from node_modules.
*
* TODO:
* - can we run one test at a time
* - can we can we run under phantomjs/jsdom?
* - write junit out
*/
process.env.PHANTOMJS_BIN = 'node_modules/.bin/phantomjs';
module.exports = function (config) {
config.set({
// frameworks to use