Skip to content

Commit

Permalink
fix: allow empty output from test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald committed May 31, 2018
1 parent 5611458 commit 67a2d95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/plugin/outputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const runResultSchema = Joi.object().keys({
success: Joi.boolean().required(),
startedAt: Joi.date().required(),
completedAt: Joi.date().required(),
output: Joi.string().required(),
output: Joi.string().required().allow(""),
})

export interface TestResult extends RunResult {
Expand Down

0 comments on commit 67a2d95

Please sign in to comment.