Skip to content

Commit

Permalink
Temporarily log more info during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
John Bartos committed Nov 28, 2016
1 parent 5511bec commit 64bb895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function evalTest(vtt, json, testType, onDone) {
}
if (!deepEqual(vtt, json)) {
return onDone(new Error("Failed JSON diff while " + testType + ".\n" +
difflet.compare(vtt, json)));
difflet.compare(vtt, json) + ".\n" + vtt + ".\n" + json));
}
onDone();
}
Expand Down

0 comments on commit 64bb895

Please sign in to comment.