You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log('\n • skipping test marked as "TODO" :: (should exit with `'+testCase.outcome+'`'+(_.isUndefined(jsonInputVals)?'':' given input values: `'+jsonInputVals+'`)') );
return nextTestCase();
}
return nextTestCase(function (err) {
console.log('\n • should exit with `'+testCase.outcome+'`'+ (_.isUndefined(jsonInputVals)?'':' given input values: `'+jsonInputVals+'`'));
if (err) {
console.error(' (X) failed - '+err);
return;
}
console.log(' (+) passed');
return;
});
});
}, function afterRunningAllTests(err) {
if (err) {
console.error('finished with error:',(_.isObject(err)&&err.stack)||err);