Skip to content

Commit

Permalink
remove cruft from wallaby config
Browse files Browse the repository at this point in the history
also increase default timeout

Ref: #4198
  • Loading branch information
boneskull authored and craigtaub committed May 21, 2020
1 parent 27aeb80 commit 2afb9f6
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .wallaby.js
Expand Up @@ -36,7 +36,7 @@ module.exports = () => {
// running mocha instance is not the same as mocha under test,
// running mocha is the project's source code mocha, mocha under test is instrumented version of the source code
const runningMocha = wallaby.testFramework;
runningMocha.timeout(200);
runningMocha.timeout(1000);
// to expose it/describe etc. on the mocha under test
const MochaUnderTest = require('./');
const mochaUnderTest = new MochaUnderTest();
Expand All @@ -46,18 +46,6 @@ module.exports = () => {
'',
mochaUnderTest
);
// to make test/node-unit/color.spec.js pass, we need to run mocha in the project's folder context
const childProcess = require('child_process');
const execFile = childProcess.execFile;
childProcess.execFile = function() {
let opts = arguments[2];
if (typeof opts === 'function') {
opts = {};
Array.prototype.splice.call(arguments, 2, 0, opts);
}
opts.cwd = wallaby.localProjectDir;
return execFile.apply(this, arguments);
};
require('./test/setup');
},
debug: true
Expand Down

0 comments on commit 2afb9f6

Please sign in to comment.