Skip to content

Commit

Permalink
Add an await on posting to checks
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed May 20, 2018
1 parent 0f06b2b commit 6914dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/runner/Executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export class Executor {
// it allows bailing early.
if (this.platform.supportsHandlingResultsManually() && this.platform.handlePostingResults) {
this.d("Posting via handlePostingResults")
this.platform.handlePostingResults(results, this.options)
await this.platform.handlePostingResults(results, this.options)
return
}
const { fails, warnings, messages, markdowns } = results
Expand Down

0 comments on commit 6914dbf

Please sign in to comment.