Skip to content

Commit 7a3cb3c

Browse files
committed
fix integration tests w/ dryrun
1 parent fb0bcf7 commit 7a3cb3c

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

packages/integration-tests/fixtures/array-entries-option/setup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ createCjsBundles(
1414
release: "I AM A RELEASE!",
1515
include: outputDir,
1616
entries: [/entrypoint1\.js/, entryPoint3Path],
17+
dryRun: true,
1718
} as Options
1819
);

packages/integration-tests/fixtures/basic-release-injection/setup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ const outputDir = path.resolve(__dirname, "./out");
88
createCjsBundles({ index: entryPointPath }, outputDir, {
99
release: "I AM A RELEASE!",
1010
include: outputDir,
11+
dryRun: true,
1112
} as Options);

packages/integration-tests/fixtures/function-entries-option/setup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ createCjsBundles(
1515
include: outputDir,
1616
entries: (entrypointPath) =>
1717
entrypointPath === entryPoint1Path || entrypointPath === entryPoint3Path,
18+
dryRun: true,
1819
} as Options
1920
);

packages/integration-tests/fixtures/regex-entries-option/setup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ const outputDir = path.resolve(__dirname, "./out");
99
createCjsBundles({ entrypoint1: entryPoint1Path, entrypoint2: entryPoint2Path }, outputDir, {
1010
release: "I AM A RELEASE!",
1111
include: outputDir,
12+
dryRun: true,
1213
entries: /entrypoint1\.js/,
1314
} as Options);

packages/integration-tests/fixtures/string-entries-option/setup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ createCjsBundles({ entrypoint1: entryPoint1Path, entrypoint2: entryPoint2Path },
1010
release: "I AM A RELEASE!",
1111
include: outputDir,
1212
entries: entryPoint1Path,
13+
dryRun: true,
1314
} as Options);

0 commit comments

Comments
 (0)