Skip to content

Commit 41ca8ae

Browse files
committed
More fixes
1 parent 567cf1d commit 41ca8ae

14 files changed

Lines changed: 17 additions & 16 deletions

packages/integration-tests-next/fixtures/rolldown/application-key.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "application-key");
66

77
test("Application key injection", () => {
8-
runRolldown("application-key.config.ts");
8+
runRolldown("application-key");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/basic-release-disabled.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "basic-release-disabled");
66

77
test("Release injection disabled", () => {
8-
runRolldown("basic-release-disabled.config.ts");
8+
runRolldown("basic-release-disabled");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/basic-sourcemaps.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "basic-sourcemaps");
66

77
test("Basic with sourcemaps", () => {
8-
runRolldown("basic-sourcemaps.config.ts");
8+
runRolldown("basic-sourcemaps");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/basic.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "basic");
66

77
test("Basic", () => {
8-
runRolldown("basic.config.ts");
8+
runRolldown("basic");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/component-annotation-disabled.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "component-annotation-disabled");
66

77
test("Component annotation disabled", () => {
8-
runRolldown("component-annotation-disabled.config.ts");
8+
runRolldown("component-annotation-disabled");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/component-annotation-next.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "component-annotation-next");
66

77
test("Component annotation experimental", () => {
8-
runRolldown("component-annotation-next.config.ts");
8+
runRolldown("component-annotation-next");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/component-annotation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "component-annotation");
66

77
test("Component annotation", () => {
8-
runRolldown("component-annotation.config.ts");
8+
runRolldown("component-annotation");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/debugid-disabled.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "debugid-disabled");
66

77
test("Debug ID injection disabled", () => {
8-
runRolldown("debugid-disabled.config.ts");
8+
runRolldown("debugid-disabled");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

packages/integration-tests-next/fixtures/rolldown/debugids-already-injected.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ process.on("exit", () => {
2323
test("Debug IDs already injected", () => {
2424
const tempDir = createTempDir();
2525

26-
runRolldown("debugids-already-injected.config.ts", { SENTRY_TEST_OVERRIDE_TEMP_DIR: tempDir });
26+
runRolldown("debugids-already-injected", { SENTRY_TEST_OVERRIDE_TEMP_DIR: tempDir });
2727
const files = readAllFiles(tempDir);
2828
expect(files).toMatchInlineSnapshot(`
2929
{

packages/integration-tests-next/fixtures/rolldown/module-metadata.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, getEmptyOutputDir, runRolldown } from "./utils";
55
const outputDir = getEmptyOutputDir(import.meta.url, "module-metadata");
66

77
test("Module metadata injection", () => {
8-
runRolldown("module-metadata.config.ts");
8+
runRolldown("module-metadata");
99
const files = readAllFiles(outputDir);
1010
expect(files).toMatchInlineSnapshot(`
1111
{

0 commit comments

Comments
 (0)