No need to log the exception stack when it's just a test table difference - this should be a clean error.
This commit is contained in:
committed by
Patrick Niklaus
parent
5b24758742
commit
36c944ef53
@@ -248,7 +248,7 @@ module.exports = function () {
|
||||
q.awaitAll((err, actual) => {
|
||||
if (err) return callback(err);
|
||||
let diff = tableDiff(table, actual);
|
||||
if (diff) callback(new Error(diff));
|
||||
if (diff) callback(diff);
|
||||
else callback();
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user