@@ -133,7 +133,7 @@ describe('updateIntegrationStatus', () => {
133
133
} ,
134
134
} ) ;
135
135
} ) ;
136
- it ( 'should abort for unsupported lock file version' , ( ) => {
136
+ it ( 'should exit for unsupported lock file version' , ( ) => {
137
137
// @ts -ignore
138
138
// eslint-disable-next-line @typescript-eslint/no-empty-function
139
139
@@ -152,9 +152,9 @@ describe('updateIntegrationStatus', () => {
152
152
} ,
153
153
} ,
154
154
] ) ;
155
- } ) . toThrowError ( 'program aborted ' ) ;
155
+ } ) . toThrowError ( 'program exited ' ) ;
156
156
} ) ;
157
- it ( 'should abort when has no read permission' , ( ) => {
157
+ it ( 'should exit when has no read permission' , ( ) => {
158
158
mockFs . setReadPermission ( false ) ;
159
159
// @ts -ignore
160
160
// eslint-disable-next-line @typescript-eslint/no-empty-function
@@ -174,9 +174,9 @@ describe('updateIntegrationStatus', () => {
174
174
} ,
175
175
} ,
176
176
] ) ;
177
- } ) . toThrowError ( 'program aborted ' ) ;
177
+ } ) . toThrowError ( 'program exited ' ) ;
178
178
} ) ;
179
- it ( 'should abort when has no write permission' , ( ) => {
179
+ it ( 'should exit when has no write permission' , ( ) => {
180
180
mockFs . setWritePermission ( false ) ;
181
181
// @ts -ignore
182
182
// eslint-disable-next-line @typescript-eslint/no-empty-function
@@ -190,6 +190,6 @@ describe('updateIntegrationStatus', () => {
190
190
} ,
191
191
} ,
192
192
] ) ;
193
- } ) . toThrowError ( 'program aborted ' ) ;
193
+ } ) . toThrowError ( 'program exited ' ) ;
194
194
} ) ;
195
195
} ) ;
0 commit comments