Compare commits

...

1 Commits

Author SHA1 Message Date
Nicolas Perriault 0a9f9a6804 Print exception stack when generating a test case fails. 9 years ago

@ -126,7 +126,7 @@ function runReadability(source, destPath, metadataDestPath) {
try {
var result = new Readability(uri, doc).parse();
} catch (ex) {
console.error(ex);
console.error(ex.stack);
}
if (!result) {
console.error("No content generated by readability, not going to write expected.html!");

Loading…
Cancel
Save