File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,10 @@ Started.args = {
35
35
}
36
36
37
37
export const Starting = Template . bind ( { } )
38
- Starting . args = { ...Started . args , workspace : MockStartingWorkspace }
38
+ Starting . args = {
39
+ ...Started . args ,
40
+ workspace : MockStartingWorkspace ,
41
+ }
39
42
40
43
export const Stopped = Template . bind ( { } )
41
44
Stopped . args = { ...Started . args , workspace : MockStoppedWorkspace }
Original file line number Diff line number Diff line change @@ -169,7 +169,14 @@ export const MockStoppingWorkspace: TypesGen.Workspace = {
169
169
}
170
170
export const MockStartingWorkspace : TypesGen . Workspace = {
171
171
...MockWorkspace ,
172
- latest_build : { ...MockWorkspaceBuild , job : MockRunningProvisionerJob } ,
172
+ latest_build : {
173
+ ...MockWorkspaceBuild ,
174
+ job : {
175
+ ...MockProvisionerJob ,
176
+ status : "succeeded" ,
177
+ } ,
178
+ transition : "start" ,
179
+ } ,
173
180
}
174
181
export const MockCancelingWorkspace : TypesGen . Workspace = {
175
182
...MockWorkspace ,
You can’t perform that action at this time.
0 commit comments