@@ -452,7 +452,7 @@ test('global CSS', async function (t) {
452
452
453
453
test ( 'preact' , async function ( t ) {
454
454
t . plan ( 6 )
455
- const directoryPath = join ( __dirname , 'fixtures' , '14 -preact' )
455
+ const directoryPath = join ( __dirname , 'fixtures' , '15 -preact' )
456
456
process . chdir ( directoryPath )
457
457
await cleanUpAsync ( )
458
458
t . false ( await pathExists ( 'build' ) )
@@ -477,7 +477,7 @@ test('preact', async function (t) {
477
477
478
478
test ( 'react' , async function ( t ) {
479
479
t . plan ( 6 )
480
- const directoryPath = join ( __dirname , 'fixtures' , '15 -react' )
480
+ const directoryPath = join ( __dirname , 'fixtures' , '16 -react' )
481
481
process . chdir ( directoryPath )
482
482
await cleanUpAsync ( )
483
483
t . false ( await pathExists ( 'build' ) )
@@ -505,7 +505,7 @@ test('esbuild main config - esm', async function (t) {
505
505
const directoryPath = join (
506
506
__dirname ,
507
507
'fixtures' ,
508
- '16 -esbuild-main-config-esm'
508
+ '17 -esbuild-main-config-esm'
509
509
)
510
510
process . chdir ( directoryPath )
511
511
await cleanUpAsync ( )
@@ -535,7 +535,7 @@ test('esbuild main config - cjs', async function (t) {
535
535
const directoryPath = join (
536
536
__dirname ,
537
537
'fixtures' ,
538
- '17 -esbuild-main-config-cjs'
538
+ '18 -esbuild-main-config-cjs'
539
539
)
540
540
process . chdir ( directoryPath )
541
541
await cleanUpAsync ( )
@@ -562,7 +562,7 @@ test('esbuild main config - cjs', async function (t) {
562
562
563
563
test ( 'esbuild ui config - esm' , async function ( t ) {
564
564
t . plan ( 7 )
565
- const directoryPath = join ( __dirname , 'fixtures' , '18 -esbuild-ui-config-esm' )
565
+ const directoryPath = join ( __dirname , 'fixtures' , '19 -esbuild-ui-config-esm' )
566
566
process . chdir ( directoryPath )
567
567
await cleanUpAsync ( )
568
568
t . false ( await pathExists ( 'build' ) )
@@ -589,7 +589,7 @@ test('esbuild ui config - esm', async function (t) {
589
589
590
590
test ( 'esbuild ui config - cjs' , async function ( t ) {
591
591
t . plan ( 7 )
592
- const directoryPath = join ( __dirname , 'fixtures' , '19 -esbuild-ui-config-cjs' )
592
+ const directoryPath = join ( __dirname , 'fixtures' , '20 -esbuild-ui-config-cjs' )
593
593
process . chdir ( directoryPath )
594
594
await cleanUpAsync ( )
595
595
t . false ( await pathExists ( 'build' ) )
@@ -616,7 +616,7 @@ test('esbuild ui config - cjs', async function (t) {
616
616
617
617
test ( 'override manifest - esm' , async function ( t ) {
618
618
t . plan ( 6 )
619
- const directoryPath = join ( __dirname , 'fixtures' , '20 -override-manifest-esm' )
619
+ const directoryPath = join ( __dirname , 'fixtures' , '21 -override-manifest-esm' )
620
620
process . chdir ( directoryPath )
621
621
await cleanUpAsync ( )
622
622
t . false ( await pathExists ( 'build' ) )
@@ -641,7 +641,7 @@ test('override manifest - esm', async function (t) {
641
641
642
642
test ( 'override manifest - cjs' , async function ( t ) {
643
643
t . plan ( 6 )
644
- const directoryPath = join ( __dirname , 'fixtures' , '21 -override-manifest-cjs' )
644
+ const directoryPath = join ( __dirname , 'fixtures' , '22 -override-manifest-cjs' )
645
645
process . chdir ( directoryPath )
646
646
await cleanUpAsync ( )
647
647
t . false ( await pathExists ( 'build' ) )
@@ -666,7 +666,7 @@ test('override manifest - cjs', async function (t) {
666
666
667
667
test ( 'process.env.NODE_ENV' , async function ( t ) {
668
668
t . plan ( 7 )
669
- const directoryPath = join ( __dirname , 'fixtures' , '22 -process-env-node-env' )
669
+ const directoryPath = join ( __dirname , 'fixtures' , '23 -process-env-node-env' )
670
670
process . chdir ( directoryPath )
671
671
await cleanUpAsync ( )
672
672
t . false ( await pathExists ( 'build' ) )
@@ -697,7 +697,7 @@ test('process.env.NODE_ENV', async function (t) {
697
697
test ( 'output directory' , async function ( t ) {
698
698
t . plan ( 8 )
699
699
const outputDirectoryName = 'my-plugin'
700
- const directoryPath = join ( __dirname , 'fixtures' , '23 -output-directory' )
700
+ const directoryPath = join ( __dirname , 'fixtures' , '24 -output-directory' )
701
701
process . chdir ( directoryPath )
702
702
await cleanUpAsync ( )
703
703
await fs . rm ( outputDirectoryName , { force : true , recursive : true } )
0 commit comments