File tree 1 file changed +12
-7
lines changed
1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -70,17 +70,22 @@ export const MockProvisionerJob: TypesGen.ProvisionerJob = {
70
70
id : "test-provisioner-job" ,
71
71
status : "succeeded" ,
72
72
}
73
-
74
- export const MockFailedProvisionerJob = { ...MockProvisionerJob , status : "failed" as TypesGen . ProvisionerJobStatus }
75
- export const MockCancelingProvisionerJob = {
73
+ export const MockFailedProvisionerJob : TypesGen . ProvisionerJob = {
74
+ ...MockProvisionerJob ,
75
+ status : "failed" ,
76
+ }
77
+ export const MockCancelingProvisionerJob : TypesGen . ProvisionerJob = {
78
+ ...MockProvisionerJob ,
79
+ status : "canceling" ,
80
+ }
81
+ export const MockCanceledProvisionerJob : TypesGen . ProvisionerJob = {
76
82
...MockProvisionerJob ,
77
- status : "canceling" as TypesGen . ProvisionerJobStatus ,
83
+ status : "canceled" ,
78
84
}
79
- export const MockCanceledProvisionerJob = {
85
+ export const MockRunningProvisionerJob : TypesGen . ProvisionerJob = {
80
86
...MockProvisionerJob ,
81
- status : "canceled" as TypesGen . ProvisionerJobStatus ,
87
+ status : "running" ,
82
88
}
83
- export const MockRunningProvisionerJob = { ...MockProvisionerJob , status : "running" as TypesGen . ProvisionerJobStatus }
84
89
85
90
export const MockTemplateVersion : TypesGen . TemplateVersion = {
86
91
id : "test-template-version" ,
You can’t perform that action at this time.
0 commit comments