Skip to content

Commit 2da7005

Browse files
committed
Rename
1 parent 29f20e6 commit 2da7005

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/build/test/build-async/build-async.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ test('global CSS', async function (t) {
452452

453453
test('preact', async function (t) {
454454
t.plan(6)
455-
const directoryPath = join(__dirname, 'fixtures', '14-preact')
455+
const directoryPath = join(__dirname, 'fixtures', '15-preact')
456456
process.chdir(directoryPath)
457457
await cleanUpAsync()
458458
t.false(await pathExists('build'))
@@ -477,7 +477,7 @@ test('preact', async function (t) {
477477

478478
test('react', async function (t) {
479479
t.plan(6)
480-
const directoryPath = join(__dirname, 'fixtures', '15-react')
480+
const directoryPath = join(__dirname, 'fixtures', '16-react')
481481
process.chdir(directoryPath)
482482
await cleanUpAsync()
483483
t.false(await pathExists('build'))
@@ -505,7 +505,7 @@ test('esbuild main config - esm', async function (t) {
505505
const directoryPath = join(
506506
__dirname,
507507
'fixtures',
508-
'16-esbuild-main-config-esm'
508+
'17-esbuild-main-config-esm'
509509
)
510510
process.chdir(directoryPath)
511511
await cleanUpAsync()
@@ -535,7 +535,7 @@ test('esbuild main config - cjs', async function (t) {
535535
const directoryPath = join(
536536
__dirname,
537537
'fixtures',
538-
'17-esbuild-main-config-cjs'
538+
'18-esbuild-main-config-cjs'
539539
)
540540
process.chdir(directoryPath)
541541
await cleanUpAsync()
@@ -562,7 +562,7 @@ test('esbuild main config - cjs', async function (t) {
562562

563563
test('esbuild ui config - esm', async function (t) {
564564
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')
566566
process.chdir(directoryPath)
567567
await cleanUpAsync()
568568
t.false(await pathExists('build'))
@@ -589,7 +589,7 @@ test('esbuild ui config - esm', async function (t) {
589589

590590
test('esbuild ui config - cjs', async function (t) {
591591
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')
593593
process.chdir(directoryPath)
594594
await cleanUpAsync()
595595
t.false(await pathExists('build'))
@@ -616,7 +616,7 @@ test('esbuild ui config - cjs', async function (t) {
616616

617617
test('override manifest - esm', async function (t) {
618618
t.plan(6)
619-
const directoryPath = join(__dirname, 'fixtures', '20-override-manifest-esm')
619+
const directoryPath = join(__dirname, 'fixtures', '21-override-manifest-esm')
620620
process.chdir(directoryPath)
621621
await cleanUpAsync()
622622
t.false(await pathExists('build'))
@@ -641,7 +641,7 @@ test('override manifest - esm', async function (t) {
641641

642642
test('override manifest - cjs', async function (t) {
643643
t.plan(6)
644-
const directoryPath = join(__dirname, 'fixtures', '21-override-manifest-cjs')
644+
const directoryPath = join(__dirname, 'fixtures', '22-override-manifest-cjs')
645645
process.chdir(directoryPath)
646646
await cleanUpAsync()
647647
t.false(await pathExists('build'))
@@ -666,7 +666,7 @@ test('override manifest - cjs', async function (t) {
666666

667667
test('process.env.NODE_ENV', async function (t) {
668668
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')
670670
process.chdir(directoryPath)
671671
await cleanUpAsync()
672672
t.false(await pathExists('build'))
@@ -697,7 +697,7 @@ test('process.env.NODE_ENV', async function (t) {
697697
test('output directory', async function (t) {
698698
t.plan(8)
699699
const outputDirectoryName = 'my-plugin'
700-
const directoryPath = join(__dirname, 'fixtures', '23-output-directory')
700+
const directoryPath = join(__dirname, 'fixtures', '24-output-directory')
701701
process.chdir(directoryPath)
702702
await cleanUpAsync()
703703
await fs.rm(outputDirectoryName, { force: true, recursive: true })

0 commit comments

Comments
 (0)