DEV: Better output when assertion fails in smoke test.
This commit is contained in:
parent
a508e6a5f6
commit
c27863aad2
|
@ -231,7 +231,14 @@ const path = require('path');
|
||||||
|
|
||||||
return promise;
|
return promise;
|
||||||
}, output => {
|
}, output => {
|
||||||
return output.match("I can even write a reply");
|
const expected = "I can even write a reply";
|
||||||
|
const matched = output.match(expected);
|
||||||
|
|
||||||
|
if (!matched) {
|
||||||
|
console.log(`Expected '${output}' to match '${expected}'`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return matched;
|
||||||
});
|
});
|
||||||
|
|
||||||
await exec("submit the topic", () => {
|
await exec("submit the topic", () => {
|
||||||
|
|
Loading…
Reference in New Issue