Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions system-test/read-rows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import {EventEmitter} from 'events';
import {Test} from './testTypes';
import {ServiceError, GrpcClient, GoogleError, CallOptions} from 'google-gax';
import {PassThrough} from 'stream';
import * as mocha from 'mocha';

const {grpc} = new GrpcClient();

Expand Down Expand Up @@ -178,7 +177,7 @@ describe('Bigtable/Table', () => {
});

tests.forEach(test => {
it(test.name, (done: mocha.Done) => {
it(test.name, done => {
responses = test.responses;
TABLE.maxRetries = test.max_retries;
TABLE.createReadStream(test.createReadStream_options)
Expand Down
Loading