mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 13:13:39 +08:00
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;
|
||||
}, 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", () => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user