Skip to content

Commit 9ae0d78

Browse files
author
Thomas Bolis
committed
Correcting error Invalid config file! for node version 0.12.x
/home/travis/build/tbolis/react-sketch/karma.config.js:5 const path = require('path'); ^^^^^
1 parent 659edad commit 9ae0d78

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

karma.config.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
'use strict';
44

5-
const path = require('path');
6-
7-
const srcPath = path.join(__dirname, 'src');
8-
const testPath = path.join(__dirname, 'test');
5+
var path = require('path');
6+
var srcPath = path.join(__dirname, 'src');
7+
var testPath = path.join(__dirname, 'test');
98

109
// Set environment to testing
1110
process.env.NODE_ENV = 'testing';

0 commit comments

Comments
 (0)