We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b62a2 commit 6c345d2Copy full SHA for 6c345d2
1 file changed
scripts/helpers.js
@@ -236,7 +236,13 @@ Module.prototype.runSnippetTests = function() {
236
* Runs system tests for this module via `npm run system-test`
237
*/
238
Module.prototype.runSystemTests = function() {
239
- if (this.name === 'common' || this.name === 'common-grpc') {
+ var modulesExcludedFromSystemTests = [
240
+ 'common',
241
+ 'common-grpc',
242
+ 'monitoring'
243
+ ];
244
+
245
+ if (modulesExcludedFromSystemTests.indexOf(this.name) > -1) {
246
return;
247
}
248
0 commit comments