@@ -167,7 +167,7 @@ describe('git', () => {
167167 const response = await deploy ( action )
168168
169169 // Includes the call to generateWorktree
170- expect ( execute ) . toHaveBeenCalledTimes ( 14 )
170+ expect ( execute ) . toHaveBeenCalledTimes ( 15 )
171171 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
172172 expect ( response ) . toBe ( Status . SUCCESS )
173173 } )
@@ -190,7 +190,7 @@ describe('git', () => {
190190 const response = await deploy ( action )
191191
192192 // Includes the call to generateWorktree
193- expect ( execute ) . toHaveBeenCalledTimes ( 13 )
193+ expect ( execute ) . toHaveBeenCalledTimes ( 14 )
194194 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
195195 expect ( response ) . toBe ( Status . SUCCESS )
196196 } )
@@ -215,7 +215,7 @@ describe('git', () => {
215215 await deploy ( action )
216216
217217 // Includes the call to generateWorktree
218- expect ( execute ) . toHaveBeenCalledTimes ( 14 )
218+ expect ( execute ) . toHaveBeenCalledTimes ( 15 )
219219 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
220220 } )
221221
@@ -264,7 +264,7 @@ describe('git', () => {
264264 await deploy ( action )
265265
266266 // Includes the call to generateWorktree
267- expect ( execute ) . toHaveBeenCalledTimes ( 13 )
267+ expect ( execute ) . toHaveBeenCalledTimes ( 14 )
268268 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
269269 } )
270270
@@ -295,7 +295,7 @@ describe('git', () => {
295295 const response = await deploy ( action )
296296
297297 // Includes the call to generateWorktree
298- expect ( execute ) . toHaveBeenCalledTimes ( 14 )
298+ expect ( execute ) . toHaveBeenCalledTimes ( 15 )
299299 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
300300 expect ( fs . existsSync ) . toHaveBeenCalledTimes ( 2 )
301301 expect ( response ) . toBe ( Status . SUCCESS )
@@ -327,7 +327,7 @@ describe('git', () => {
327327 await deploy ( action )
328328
329329 // Includes the call to generateWorktree
330- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
330+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
331331 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
332332 } )
333333 } )
@@ -352,7 +352,7 @@ describe('git', () => {
352352 await deploy ( action )
353353
354354 // Includes the call to generateWorktree
355- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
355+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
356356 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
357357 } )
358358
@@ -372,7 +372,7 @@ describe('git', () => {
372372
373373 await deploy ( action )
374374
375- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
375+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
376376 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
377377 expect ( mkdirP ) . toHaveBeenCalledTimes ( 1 )
378378 } )
@@ -392,7 +392,7 @@ describe('git', () => {
392392 } )
393393
394394 const response = await deploy ( action )
395- expect ( execute ) . toHaveBeenCalledTimes ( 11 )
395+ expect ( execute ) . toHaveBeenCalledTimes ( 12 )
396396 expect ( rmRF ) . toHaveBeenCalledTimes ( 1 )
397397 expect ( response ) . toBe ( Status . SKIPPED )
398398 } )
@@ -466,7 +466,7 @@ describe('git', () => {
466466 } )
467467
468468 const response = await deploy ( action )
469- expect ( execute ) . toHaveBeenCalledTimes ( 16 )
469+ expect ( execute ) . toHaveBeenCalledTimes ( 17 )
470470 expect ( response ) . toBe ( Status . SUCCESS )
471471 } )
472472 } )
0 commit comments