Skip to content

Commit

Permalink
feat(core): Include SUCCEEDED status in ITaskStatus (#8193)
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyhebebrand committed Apr 20, 2020
1 parent 5fe3b0c commit da66db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mocks/src/mockTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const mockOrchestratedItem: IOrchestratedItem = {
runningTimeInMs: 40000,
};

type ITaskStatus = 'TERMINAL' | 'NOT_STARTED' | 'CANCELED' | 'RUNNING';
type ITaskStatus = 'TERMINAL' | 'NOT_STARTED' | 'CANCELED' | 'RUNNING' | 'SUCCEEDED';
export const createMockOrchestratedItem = (status: ITaskStatus): IOrchestratedItem => {
if (status === 'TERMINAL') {
return {
Expand Down

0 comments on commit da66db0

Please sign in to comment.