Skip to content

Commit

Permalink
fix(nebula): add executed tasks to metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
error418 committed Sep 28, 2019
1 parent 23af150 commit 214930f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/nebula/status-emitter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ export class NebulaStatusEmitter {
id: build.buildId,
elapsedTime: build.elapsedTime,
startTime: build.startTime,
finishedTime: build.finishedTime
finishedTime: build.finishedTime,
tasks: build.tasks.map(it => {
return it.description;
})
},
test: {
count: build.testCount
Expand Down

0 comments on commit 214930f

Please sign in to comment.