build(grpc-reflection): moved reflection tests to proper job and added test coverage

This commit is contained in:
Justin Timmons 2023-11-15 20:51:48 -05:00
parent 87e1f79846
commit 7a15a1cccb
2 changed files with 4 additions and 3 deletions

View File

@ -37,11 +37,11 @@ const clean = gulp.series(jsCore.clean, protobuf.clean, jsXds.clean);
const cleanAll = gulp.series(jsXds.cleanAll, jsCore.cleanAll, internalTest.cleanAll, protobuf.cleanAll);
const nativeTestOnly = gulp.parallel(healthCheck.test, reflection.test);
const nativeTestOnly = gulp.parallel(healthCheck.test);
const nativeTest = gulp.series(build, nativeTestOnly);
const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test, jsXds.test);
const testOnly = gulp.parallel(jsCore.test, nativeTestOnly, protobuf.test, jsXds.test, reflection.test);
const test = gulp.series(build, testOnly, internalTest.test);

View File

@ -54,7 +54,8 @@
"include": [
"packages/grpc-health-check/health.js",
"packages/grpc-js/build/src/*",
"packages/proto-loader/build/src/*"
"packages/proto-loader/build/src/*",
"packages/grpc-reflection/build/src/*"
],
"cache": true,
"all": true