@@ -167,7 +167,7 @@ describe('git', () => {
167
167
const response = await deploy ( action )
168
168
169
169
// Includes the call to generateWorktree
170
- expect ( execute ) . toHaveBeenCalledTimes ( 14 )
170
+ expect ( execute ) . toHaveBeenCalledTimes ( 15 )
171
171
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
172
172
expect ( response ) . toBe ( Status . SUCCESS )
173
173
} )
@@ -190,7 +190,7 @@ describe('git', () => {
190
190
const response = await deploy ( action )
191
191
192
192
// Includes the call to generateWorktree
193
- expect ( execute ) . toHaveBeenCalledTimes ( 13 )
193
+ expect ( execute ) . toHaveBeenCalledTimes ( 14 )
194
194
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
195
195
expect ( response ) . toBe ( Status . SUCCESS )
196
196
} )
@@ -215,7 +215,7 @@ describe('git', () => {
215
215
await deploy ( action )
216
216
217
217
// Includes the call to generateWorktree
218
- expect ( execute ) . toHaveBeenCalledTimes ( 14 )
218
+ expect ( execute ) . toHaveBeenCalledTimes ( 15 )
219
219
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
220
220
} )
221
221
@@ -264,7 +264,7 @@ describe('git', () => {
264
264
await deploy ( action )
265
265
266
266
// Includes the call to generateWorktree
267
- expect ( execute ) . toHaveBeenCalledTimes ( 13 )
267
+ expect ( execute ) . toHaveBeenCalledTimes ( 14 )
268
268
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
269
269
} )
270
270
@@ -295,7 +295,7 @@ describe('git', () => {
295
295
const response = await deploy ( action )
296
296
297
297
// Includes the call to generateWorktree
298
- expect ( execute ) . toHaveBeenCalledTimes ( 14 )
298
+ expect ( execute ) . toHaveBeenCalledTimes ( 15 )
299
299
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
300
300
expect ( fs . existsSync ) . toHaveBeenCalledTimes ( 2 )
301
301
expect ( response ) . toBe ( Status . SUCCESS )
@@ -327,7 +327,7 @@ describe('git', () => {
327
327
await deploy ( action )
328
328
329
329
// Includes the call to generateWorktree
330
- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
330
+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
331
331
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
332
332
} )
333
333
} )
@@ -352,7 +352,7 @@ describe('git', () => {
352
352
await deploy ( action )
353
353
354
354
// Includes the call to generateWorktree
355
- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
355
+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
356
356
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
357
357
} )
358
358
@@ -372,7 +372,7 @@ describe('git', () => {
372
372
373
373
await deploy ( action )
374
374
375
- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
375
+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
376
376
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
377
377
expect ( mkdirP ) . toHaveBeenCalledTimes ( 1 )
378
378
} )
@@ -392,7 +392,7 @@ describe('git', () => {
392
392
} )
393
393
394
394
const response = await deploy ( action )
395
- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
395
+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
396
396
expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
397
397
expect ( response ) . toBe ( Status . SKIPPED )
398
398
} )
@@ -466,7 +466,7 @@ describe('git', () => {
466
466
} )
467
467
468
468
const response = await deploy ( action )
469
- expect ( execute ) . toHaveBeenCalledTimes ( 16 )
469
+ expect ( execute ) . toHaveBeenCalledTimes ( 17 )
470
470
expect ( response ) . toBe ( Status . SUCCESS )
471
471
} )
472
472
} )
0 commit comments