@@ -41,25 +41,49 @@ Starting.args = {
41
41
}
42
42
43
43
export const Stopped = Template . bind ( { } )
44
- Stopped . args = { ...Started . args , workspace : MockStoppedWorkspace }
44
+ Stopped . args = {
45
+ ...Started . args ,
46
+ workspace : MockStoppedWorkspace ,
47
+ }
45
48
46
49
export const Stopping = Template . bind ( { } )
47
- Stopping . args = { ...Started . args , workspace : MockStoppingWorkspace }
50
+ Stopping . args = {
51
+ ...Started . args ,
52
+ workspace : MockStoppingWorkspace ,
53
+ }
48
54
49
55
export const Error = Template . bind ( { } )
50
- Error . args = { ...Started . args , workspace : MockFailedWorkspace }
56
+ Error . args = {
57
+ ...Started . args ,
58
+ workspace : MockFailedWorkspace ,
59
+ }
51
60
52
61
export const Deleting = Template . bind ( { } )
53
- Deleting . args = { ...Started . args , workspace : MockDeletingWorkspace }
62
+ Deleting . args = {
63
+ ...Started . args ,
64
+ workspace : MockDeletingWorkspace ,
65
+ }
54
66
55
67
export const Deleted = Template . bind ( { } )
56
- Deleted . args = { ...Started . args , workspace : MockDeletedWorkspace }
68
+ Deleted . args = {
69
+ ...Started . args ,
70
+ workspace : MockDeletedWorkspace ,
71
+ }
57
72
58
73
export const Canceling = Template . bind ( { } )
59
- Canceling . args = { ...Started . args , workspace : MockCancelingWorkspace }
74
+ Canceling . args = {
75
+ ...Started . args ,
76
+ workspace : MockCancelingWorkspace ,
77
+ }
60
78
61
79
export const Canceled = Template . bind ( { } )
62
- Canceled . args = { ...Started . args , workspace : MockCanceledWorkspace }
80
+ Canceled . args = {
81
+ ...Started . args ,
82
+ workspace : MockCanceledWorkspace ,
83
+ }
63
84
64
85
export const Outdated = Template . bind ( { } )
65
- Outdated . args = { ...Started . args , workspace : MockOutdatedWorkspace }
86
+ Outdated . args = {
87
+ ...Started . args ,
88
+ workspace : MockOutdatedWorkspace ,
89
+ }
0 commit comments