Skip to content

Commit c907976

Browse files
committed
set telemetry to false in integration tests
1 parent 0623113 commit c907976

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

integration-tests/fixtures/generate-bundle-stats/rollup/rollup-v3-plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import path from "path";
44
import fs from "fs";
55
import { type Output } from "@codecov/bundler-plugin-core";
66
import { rollup as rollupV3 } from "rollupV3";
7-
// @ts-expect-error - no types
87
import resolve from "@rollup/plugin-node-resolve";
98
import commonjs from "@rollup/plugin-commonjs";
109
import { codecovRollupPlugin } from "@codecov/rollup-plugin";
@@ -24,6 +23,7 @@ describe("Generating rollup stats", () => {
2423
enableBundleAnalysis: true,
2524
dryRun: true,
2625
bundleName: "rollup-test",
26+
telemetry: false,
2727
}),
2828
],
2929
}).then((bundle) =>

integration-tests/fixtures/generate-bundle-stats/rollup/rollup-v4-plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import path from "path";
44
import fs from "fs";
55
import { type Output } from "@codecov/bundler-plugin-core";
66
import { rollup as rollupV4 } from "rollupV4";
7-
// @ts-expect-error - no types
87
import resolve from "@rollup/plugin-node-resolve";
98
import commonjs from "@rollup/plugin-commonjs";
109
import { codecovRollupPlugin } from "@codecov/rollup-plugin";
@@ -24,6 +23,7 @@ describe("Generating rollup stats", () => {
2423
enableBundleAnalysis: true,
2524
dryRun: true,
2625
bundleName: "rollup-test",
26+
telemetry: false,
2727
}),
2828
],
2929
}).then((bundle) =>

integration-tests/fixtures/generate-bundle-stats/vite/vite-v4-plugin.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ describe("Generating vite stats", () => {
2828
enableBundleAnalysis: true,
2929
dryRun: true,
3030
bundleName: "vite-test",
31+
telemetry: false,
3132
}),
3233
],
3334
});

integration-tests/fixtures/generate-bundle-stats/vite/vite-v5-plugin.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ describe("Generating vite stats", () => {
2828
enableBundleAnalysis: true,
2929
dryRun: true,
3030
bundleName: "vite-test",
31+
telemetry: false,
3132
}),
3233
],
3334
});

integration-tests/fixtures/generate-bundle-stats/webpack/webpack-v5-plugin.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ describe("Generating webpack stats", () => {
2626
enableBundleAnalysis: true,
2727
dryRun: true,
2828
bundleName: "webpack-test",
29+
telemetry: false,
2930
}),
3031
],
3132
},

0 commit comments

Comments
 (0)