Skip to content

Commit

Permalink
[open-telemetry-exporter] update build:test script (#32645)
Browse files Browse the repository at this point in the history
to not do any real work.

Our convention for `build:test` is to build/setup necessary files for
testing,
for example, generating test certificates. It is not `build` and `test`.
  • Loading branch information
jeremymeng authored Jan 22, 2025
1 parent 05114ca commit 4766471
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdk/monitor/monitor-opentelemetry-exporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"lint:fix": "eslint package.json api-extractor.json src test --fix --fix-type [problem,suggestion]",
"pack": "npm pack 2>&1",
"report": "nyc report --reporter=json",
"test": "npm run clean && npm run build:test",
"test": "npm run clean && npm run unit-test",
"test-opentelemetry-versions": "node test-opentelemetry-versions.js 2>&1",
"test:browser": "npm run unit-test:browser",
"build:test": "npm run build && npm run unit-test:node",
"test:node": "npm run clean && npm run build:test && npm run unit-test:node",
"build:test": "echo skipped",
"test:node": "npm run clean && npm run unit-test:node",
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
"unit-test:browser": "echo skipped",
"unit-test:node": "dev-tool run test:vitest",
Expand Down

0 comments on commit 4766471

Please sign in to comment.