@@ -168,7 +168,7 @@ describe('git', () => {
168
168
const response = await deploy ( action )
169
169
170
170
// Includes the call to generateWorktree
171
- expect ( execute ) . toBeCalledTimes ( 13 )
171
+ expect ( execute ) . toBeCalledTimes ( 14 )
172
172
expect ( rmRF ) . toBeCalledTimes ( 1 )
173
173
expect ( response ) . toBe ( Status . SUCCESS )
174
174
} )
@@ -191,7 +191,7 @@ describe('git', () => {
191
191
const response = await deploy ( action )
192
192
193
193
// Includes the call to generateWorktree
194
- expect ( execute ) . toBeCalledTimes ( 12 )
194
+ expect ( execute ) . toBeCalledTimes ( 13 )
195
195
expect ( rmRF ) . toBeCalledTimes ( 1 )
196
196
expect ( response ) . toBe ( Status . SUCCESS )
197
197
} )
@@ -216,7 +216,7 @@ describe('git', () => {
216
216
await deploy ( action )
217
217
218
218
// Includes the call to generateWorktree
219
- expect ( execute ) . toBeCalledTimes ( 13 )
219
+ expect ( execute ) . toBeCalledTimes ( 14 )
220
220
expect ( rmRF ) . toBeCalledTimes ( 1 )
221
221
} )
222
222
@@ -240,7 +240,7 @@ describe('git', () => {
240
240
await deploy ( action )
241
241
242
242
// Includes the call to generateWorktree
243
- expect ( execute ) . toBeCalledTimes ( 12 )
243
+ expect ( execute ) . toBeCalledTimes ( 13 )
244
244
expect ( rmRF ) . toBeCalledTimes ( 1 )
245
245
} )
246
246
@@ -265,7 +265,7 @@ describe('git', () => {
265
265
await deploy ( action )
266
266
267
267
// Includes the call to generateWorktree
268
- expect ( execute ) . toBeCalledTimes ( 12 )
268
+ expect ( execute ) . toBeCalledTimes ( 13 )
269
269
expect ( rmRF ) . toBeCalledTimes ( 1 )
270
270
} )
271
271
@@ -296,7 +296,7 @@ describe('git', () => {
296
296
const response = await deploy ( action )
297
297
298
298
// Includes the call to generateWorktree
299
- expect ( execute ) . toBeCalledTimes ( 13 )
299
+ expect ( execute ) . toBeCalledTimes ( 14 )
300
300
expect ( rmRF ) . toBeCalledTimes ( 1 )
301
301
expect ( fs . existsSync ) . toBeCalledTimes ( 2 )
302
302
expect ( response ) . toBe ( Status . SUCCESS )
@@ -328,7 +328,7 @@ describe('git', () => {
328
328
await deploy ( action )
329
329
330
330
// Includes the call to generateWorktree
331
- expect ( execute ) . toBeCalledTimes ( 10 )
331
+ expect ( execute ) . toBeCalledTimes ( 11 )
332
332
expect ( rmRF ) . toBeCalledTimes ( 1 )
333
333
} )
334
334
} )
@@ -353,7 +353,7 @@ describe('git', () => {
353
353
await deploy ( action )
354
354
355
355
// Includes the call to generateWorktree
356
- expect ( execute ) . toBeCalledTimes ( 10 )
356
+ expect ( execute ) . toBeCalledTimes ( 11 )
357
357
expect ( rmRF ) . toBeCalledTimes ( 1 )
358
358
} )
359
359
@@ -373,7 +373,7 @@ describe('git', () => {
373
373
374
374
await deploy ( action )
375
375
376
- expect ( execute ) . toBeCalledTimes ( 10 )
376
+ expect ( execute ) . toBeCalledTimes ( 11 )
377
377
expect ( rmRF ) . toBeCalledTimes ( 1 )
378
378
expect ( mkdirP ) . toBeCalledTimes ( 1 )
379
379
} )
@@ -393,7 +393,7 @@ describe('git', () => {
393
393
} )
394
394
395
395
const response = await deploy ( action )
396
- expect ( execute ) . toBeCalledTimes ( 10 )
396
+ expect ( execute ) . toBeCalledTimes ( 11 )
397
397
expect ( rmRF ) . toBeCalledTimes ( 1 )
398
398
expect ( response ) . toBe ( Status . SKIPPED )
399
399
} )
0 commit comments