File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ language: node_js
22node_js :
33 - " 0.10"
44before_script :
5- - " export DISPLAY=:99.0"
6- - " sh -e /etc/init.d/xvfb start"
5+ - export DISPLAY=:99.0
6+ - sh -e /etc/init.d/xvfb start
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ var webpack = require('webpack');
33module . exports = function ( config ) {
44 config . set ( {
55
6+ browserNoActivityTimeout : 30000 ,
7+
68 browsers : [ process . env . CONTINUOUS_INTEGRATION ? 'Firefox' : 'Chrome' ] ,
79
810 singleRun : process . env . CONTINUOUS_INTEGRATION === 'true' ,
@@ -18,10 +20,10 @@ module.exports = function (config) {
1820 } ,
1921
2022 webpack : {
21- devtool : 'eval ' ,
23+ devtool : 'inline-source-map ' ,
2224 module : {
2325 loaders : [
24- { test : / \. j s $ / , loader : 'jsx -loader?harmony ' }
26+ { test : / \. j s $ / , loader : 'babel -loader' }
2527 ]
2628 } ,
2729 plugins : [
You can’t perform that action at this time.
0 commit comments