Skip to content

Commit 7a15a1c

Browse files
committed
build(grpc-reflection): moved reflection tests to proper job and added test coverage
1 parent 87e1f79 commit 7a15a1c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

gulpfile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ const clean = gulp.series(jsCore.clean, protobuf.clean, jsXds.clean);
3737

3838
const cleanAll = gulp.series(jsXds.cleanAll, jsCore.cleanAll, internalTest.cleanAll, protobuf.cleanAll);
3939

40-
const nativeTestOnly = gulp.parallel(healthCheck.test, reflection.test);
40+
const nativeTestOnly = gulp.parallel(healthCheck.test);
4141

4242
const nativeTest = gulp.series(build, nativeTestOnly);
4343

44-
const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test, jsXds.test);
44+
const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test, jsXds.test, reflection.test);
4545

4646
const test = gulp.series(build, testOnly, internalTest.test);
4747

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
"include": [
5555
"packages/grpc-health-check/health.js",
5656
"packages/grpc-js/build/src/*",
57-
"packages/proto-loader/build/src/*"
57+
"packages/proto-loader/build/src/*",
58+
"packages/grpc-reflection/build/src/*"
5859
],
5960
"cache": true,
6061
"all": true

0 commit comments

Comments
 (0)