Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 728b90e

Browse files
authored
fix: increase capture limit to allow Windows tests to pass (#1188)
1 parent cd4dee0 commit 728b90e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/test-v8debugapi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,13 +1123,13 @@ describe('v8debugapi', () => {
11231123
const bp: stackdriver.Breakpoint = {
11241124
id: 'fake-id-124',
11251125
// TODO(dominickramer): This path can be lest strict when this file has
1126-
// been
1127-
// converted to Typescript.
1126+
// been converted to Typescript.
11281127
location: {path: 'build/test/test-v8debugapi-code.js', line: 10},
11291128
expressions: ['process.env', 'hasGetter'],
11301129
} as {} as stackdriver.Breakpoint;
11311130
const oldMaxData = config.capture.maxDataSize;
1132-
config.capture.maxDataSize = 20000;
1131+
// Note the boosted maxDataSize to accommodate tests run on Windows.
1132+
config.capture.maxDataSize = 200000;
11331133
api.set(bp, err1 => {
11341134
assert.ifError(err1);
11351135
api.wait(bp, err2 => {

0 commit comments

Comments
 (0)