Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
filipsobol committed Dec 17, 2024
1 parent 2c529bb commit abcc8c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ test( '--tsconfig', async () => {

expect( fileExists.plugins.some( plugin => plugin?.name === 'typescript' ) ).toBe( true );
expect( fileDoesntExist.plugins.some( plugin => plugin?.name === 'typescript' ) ).toBe( false );
expect( declarationsFalse.plugins.some( plugin => plugin?.name === 'typescript' ) ).toBe( false );
expect( declarationsFalse.plugins.some( plugin => plugin?.name === 'typescript' ) ).toBe( true );
} );

test( '--external', async () => {
Expand Down

0 comments on commit abcc8c2

Please sign in to comment.