Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 46aefda

Browse files
authored
chore: fix broken build and tests (#874)
* chore: fix build with new parseDuration types * specify versions for test deps in busybench
1 parent 572929d commit 46aefda

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export const defaultConfig = {
185185
heapMaxStackDepth: 64,
186186
ignoreHeapSamplesPath: '@google-cloud/profiler',
187187
initialBackoffMillis: 60 * 1000, // 1 minute
188-
backoffCapMillis: parseDuration('1h'),
188+
backoffCapMillis: parseDuration('1h')!,
189189
backoffMultiplier: 1.3,
190190
apiEndpoint: 'cloudprofiler.googleapis.com',
191191

system-test/busybench/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
"pretest": "npm run compile",
2323
"posttest": "npm run check"
2424
},
25-
"devDependencies": {},
26-
"dependencies": {}
25+
"devDependencies": {
26+
"gts": "^3.1.0",
27+
"typescript": "^4.9.5"
28+
}
2729
}

0 commit comments

Comments
 (0)