Skip to content

Commit 49f61c2

Browse files
authored
Merge branch 'master' into add-express-plugin
2 parents 02aef43 + 3d5879a commit 49f61c2

File tree

20 files changed

+20
-20
lines changed

20 files changed

+20
-20
lines changed

packages/opentelemetry-api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json test/**/*.ts",
9+
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
1010
"test:browser": "nyc karma start --single-run",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"codecov:browser": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",

packages/opentelemetry-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json test/**/*.ts",
9+
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
1010
"tdd": "npm run tdd:node",
1111
"tdd:node": "npm run test -- --watch-extensions ts --watch",
1212
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",

packages/opentelemetry-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"types": "build/src/index.d.ts",
1111
"repository": "open-telemetry/opentelemetry-js",
1212
"scripts": {
13-
"test": "nyc ts-mocha -p tsconfig.json test/**/*.ts",
13+
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
1414
"test:browser": "nyc karma start --single-run",
1515
"tdd": "npm run tdd:node",
1616
"tdd:node": "npm run test -- --watch-extensions ts --watch",

packages/opentelemetry-exporter-collector/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"prepare": "npm run compile",
2020
"tdd": "npm run test -- --watch-extensions ts --watch",
2121
"tdd:browser": "karma start",
22-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts' --exclude 'test/browser/**/*.ts'",
22+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts' --exclude 'test/browser/**/*.ts'",
2323
"test:browser": "nyc karma start --single-run",
2424
"version:update": "node ../../scripts/version-update.js",
2525
"watch": "tsc -w"

packages/opentelemetry-exporter-jaeger/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-exporter-prometheus/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-exporter-stackdriver-trace/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"precompile": "tsc --version",
1616
"prepare": "npm run compile",
1717
"tdd": "npm run test -- --watch-extensions ts --watch",
18-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'"
18+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'"
1919
},
2020
"keywords": [
2121
"opentelemetry",

packages/opentelemetry-exporter-zipkin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"clean": "rimraf build/*",
1212
"check": "gts check",

packages/opentelemetry-metrics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-plugin-dns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"clean": "rimraf build/*",
1212
"check": "gts check",

packages/opentelemetry-plugin-ioredis/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"test:debug": "cross-env RUN_REDIS_TESTS_LOCAL=true ts-mocha --inspect-brk --no-timeouts -p tsconfig.json 'test/**/*.test.ts'",
1111
"test:local": "cross-env RUN_REDIS_TESTS_LOCAL=true npm run test",
1212
"tdd": "npm run test -- --watch-extensions ts --watch",

packages/opentelemetry-plugin-mongodb/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1111
"tdd": "npm run test -- --watch-extensions ts --watch",
1212
"clean": "rimraf build/*",

packages/opentelemetry-plugin-mysql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1111
"tdd": "npm run test -- --watch-extensions ts --watch",
1212
"clean": "rimraf build/*",

packages/opentelemetry-plugin-redis/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"test:debug": "cross-env RUN_REDIS_TESTS_LOCAL=true ts-mocha --inspect-brk --no-timeouts -p tsconfig.json 'test/**/*.test.ts'",
1111
"test:local": "cross-env RUN_REDIS_TESTS_LOCAL=true npm run test",
1212
"tdd": "npm run test -- --watch-extensions ts --watch",

packages/opentelemetry-propagator-jaeger/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts' --exclude 'test/index-webpack.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts' --exclude 'test/index-webpack.ts'",
1010
"test:browser": "nyc karma start --single-run",
1111
"tdd": "npm run tdd:node",
1212
"tdd:node": "npm run test -- --watch-extensions ts --watch",

packages/opentelemetry-scope-async-hooks/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-scope-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
9+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-shim-opentracing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "build/src/index.d.ts",
77
"repository": "open-telemetry/opentelemetry-js",
88
"scripts": {
9-
"test": "nyc ts-mocha -p tsconfig.json test/**/*.ts",
9+
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
1010
"tdd": "npm run test -- --watch-extensions ts --watch",
1111
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../",
1212
"clean": "rimraf build/*",

packages/opentelemetry-tracing/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"fix": "gts fix",
2020
"prepare": "npm run compile",
2121
"tdd": "npm run test -- --watch-extensions ts --watch",
22-
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts' --exclude 'test/index-webpack.ts'",
22+
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts' --exclude 'test/index-webpack.ts'",
2323
"test:browser": "nyc karma start --single-run",
2424
"watch": "tsc -w"
2525
},

0 commit comments

Comments
 (0)