@@ -305,13 +305,14 @@ test('can pass tests in fixtures relative to the filename', async () => {
305305 } ) ,
306306 )
307307 expect ( describeSpy ) . toHaveBeenCalledTimes ( 6 )
308- expect ( itSpy ) . toHaveBeenCalledTimes ( 13 )
308+ expect ( itSpy ) . toHaveBeenCalledTimes ( 14 )
309309
310310 expect ( itSpy . mock . calls ) . toEqual ( [
311311 [ `cjs` , expect . any ( Function ) ] ,
312312 [ `js` , expect . any ( Function ) ] ,
313313 [ `normal` , expect . any ( Function ) ] ,
314314 [ `changed` , expect . any ( Function ) ] ,
315+ [ `fixtureOutputExt` , expect . any ( Function ) ] ,
315316 [ `jsx support` , expect . any ( Function ) ] ,
316317 [ `nested a` , expect . any ( Function ) ] ,
317318 [ `nested b` , expect . any ( Function ) ] ,
@@ -620,7 +621,7 @@ test('allows formatting fixtures results', async () => {
620621 formatResult : formatResultSpy ,
621622 } ) ,
622623 )
623- expect ( formatResultSpy ) . toHaveBeenCalledTimes ( 14 )
624+ expect ( formatResultSpy ) . toHaveBeenCalledTimes ( 15 )
624625} )
625626
626627test ( 'works with a formatter adding a empty line' , async ( ) => {
@@ -632,7 +633,7 @@ test('works with a formatter adding a empty line', async () => {
632633 formatResult : formatResultSpy ,
633634 } ) ,
634635 )
635- expect ( formatResultSpy ) . toHaveBeenCalledTimes ( 14 )
636+ expect ( formatResultSpy ) . toHaveBeenCalledTimes ( 15 )
636637} )
637638
638639test ( 'prettier formatter supported' , async ( ) => {
@@ -682,7 +683,7 @@ test('gets options from options.json files when using fixtures', async () => {
682683 } ) ,
683684 )
684685
685- expect ( optionRootFoo ) . toHaveBeenCalledTimes ( 13 )
686+ expect ( optionRootFoo ) . toHaveBeenCalledTimes ( 14 )
686687 expect ( optionFoo ) . toHaveBeenCalledTimes ( 2 )
687688 expect ( optionBar ) . toHaveBeenCalledTimes ( 1 )
688689} )
@@ -727,10 +728,10 @@ test('appends to root plugins array', async () => {
727728 } ) ,
728729 )
729730
730- expect ( optionRootFoo ) . toHaveBeenCalledTimes ( 13 )
731+ expect ( optionRootFoo ) . toHaveBeenCalledTimes ( 14 )
731732 expect ( optionFoo ) . toHaveBeenCalledTimes ( 2 )
732733 expect ( optionBar ) . toHaveBeenCalledTimes ( 1 )
733- expect ( programVisitor ) . toHaveBeenCalledTimes ( 14 )
734+ expect ( programVisitor ) . toHaveBeenCalledTimes ( 15 )
734735} )
735736
736737test ( 'endOfLine - default' , async ( ) => {
0 commit comments