File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
integrations/tailwindcss-cli/tests Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -508,7 +508,6 @@ describe('Init command', () => {
508508 { flags : [ '--ts' , '--full' ] , name : 'tailwind.config.ts' } ,
509509 { flags : [ '--esm' , '--full' ] , name : 'tailwind.config.js' } ,
510510 ] ) ( 'works with all these flags: %j' , async ( { flags, name } ) => {
511- cleanupFile ( name )
512511 await removeFile ( name )
513512
514513 let { combined } = await $ ( `${ EXECUTABLE } init ${ flags . join ( ' ' ) } ` )
@@ -595,7 +594,6 @@ describe('Init command', () => {
595594 } )
596595
597596 test ( 'ESM config is created by default in an ESM project' , async ( ) => {
598- cleanupFile ( 'tailwind.config.js' )
599597 await removeFile ( 'tailwind.config.js' )
600598
601599 let pkg = await readOutputFile ( '../package.json' )
@@ -625,7 +623,6 @@ describe('Init command', () => {
625623 } )
626624
627625 test ( 'CJS config is created by default in a non-ESM project' , async ( ) => {
628- cleanupFile ( 'tailwind.config.js' )
629626 await removeFile ( 'tailwind.config.js' )
630627
631628 let pkg = await readOutputFile ( '../package.json' )
You can’t perform that action at this time.
0 commit comments