Skip to content

Commit f07990f

Browse files
chore(nodejs_templates): add script logging to node_library populate-secrets.sh (#448)
1 parent 86ccab1 commit f07990f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

packages/google-cloud-compute/.mocharc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
const config = {
1515
"enable-source-maps": true,
1616
"throw-deprecation": true,
17-
"timeout": 10000
17+
// There seems to be a regression such that overrides are not being
18+
// supported by mocha:
19+
"timeout": 1200000
1820
}
1921
if (process.env.MOCHA_THROW_DEPRECATION === 'false') {
2022
delete config['throw-deprecation'];

packages/google-cloud-compute/synth.metadata

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/nodejs-compute.git",
7-
"sha": "a42c5e06d02b85a090b01e6c37ab1e665afe5ee4"
7+
"sha": "c861b8c0754cecfa15cef22be3c030bb146ce987"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "synthtool",
1313
"remote": "https://github.com/googleapis/synthtool.git",
14-
"sha": "1c92077459db3dc50741e878f98b08c6261181e0"
14+
"sha": "e7034945fbdc0e79d3c57f6e299e5c90b0f11469"
1515
}
1616
}
1717
]

packages/google-cloud-compute/synth.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
common_templates = gcp.CommonTemplates()
1111
templates = common_templates.node_library()
12-
s.copy(templates)
12+
s.copy(templates, exclude=[
13+
'.mocharc.js'
14+
])
1315
node.install()
1416
node.fix()

0 commit comments

Comments
 (0)