Skip to content

Commit 46f44e6

Browse files
authored
1 parent e66393c commit 46f44e6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

sdk/servicebus/service-bus/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"pack": "npm pack 2>&1",
4949
"perf-test:node": "tsc -p . --module \"commonjs\" && node dist-esm/test/perf/track-2/index.spec.js",
5050
"test": "npm run test:node && npm run test:browser",
51-
"test:browser": "npm run clean && npm run bundle && npm run integration-test:browser",
51+
"test:browser": "npm run clean && npm run integration-test:browser",
5252
"test:node": "npm run clean && npm run integration-test:node",
5353
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
5454
"unit-test:browser": "echo skipped",
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
{
2-
"extends": ["./tsconfig.test.json", "../../../tsconfig.browser.base.json"]
2+
"extends": ["./tsconfig.test.json", "../../../tsconfig.browser.base.json"],
3+
"exclude": [
4+
"${configDir}/test/**/node",
5+
"${configDir}/test/stress",
6+
"${configDir}/test/snippets.spec.ts",
7+
"${configDir}/test/internal/connectionManagement.spec.ts"
8+
]
39
}

tsconfig.browser.base.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"exclude": ["${configDir}/test/**/node", "${configDir}/test/snippets.spec.ts"],
2+
"exclude": ["${configDir}/test/**/node", "${configDir}/test/stress", "${configDir}/test/snippets.spec.ts"],
33
"compilerOptions": {
44
"outDir": "${configDir}/dist-test/browser",
55
"noEmit": false

0 commit comments

Comments
 (0)