Skip to content

Commit

Permalink
disable telemetry in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-codecov committed Feb 20, 2024
1 parent a386e5f commit d513ce1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = defineConfig({
resolve(), // tells Rollup how to find date-fns in node_modules
commonjs(), // converts date-fns to ES modules
codecovRollupPlugin({
telemetry: false,
enableBundleAnalysis: true,
bundleName: "test-rollup-v3",
uploadToken: "test-token",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module.exports = defineConfig({
resolve(), // tells Rollup how to find date-fns in node_modules
commonjs(), // converts date-fns to ES modules
codecovRollupPlugin({
telemetry: false,
enableBundleAnalysis: true,
bundleName: "test-rollup-v4",
uploadToken: "test-token",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default defineConfig({
},
plugins: [
codecovVitePlugin({
telemetry: false,
enableBundleAnalysis: true,
bundleName: "test-vite-v4",
uploadToken: "test-token",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default defineConfig({
},
plugins: [
codecovVitePlugin({
telemetry: false,
enableBundleAnalysis: true,
bundleName: "test-vite-v5",
uploadToken: "test-token",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {
mode: "production",
plugins: [
codecovWebpackPlugin({
telemetry: false,
enableBundleAnalysis: true,
bundleName: "test-webpack-v5",
uploadToken: "test-token",
Expand Down

0 comments on commit d513ce1

Please sign in to comment.