From 0b1ee3af4a0c47a98da0026e0f70942204704dd4 Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Wed, 25 Jun 2025 14:01:27 -0400 Subject: [PATCH 1/3] Remove mocha dependency --- system-test/read-rows.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/system-test/read-rows.ts b/system-test/read-rows.ts index 6f0395da9..59f5fac50 100644 --- a/system-test/read-rows.ts +++ b/system-test/read-rows.ts @@ -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(); @@ -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) From d9c83ccf3cb0ca73d7fec36e11afa738773de049 Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Wed, 25 Jun 2025 14:01:27 -0400 Subject: [PATCH 2/3] test: Remove mocha dependency --- system-test/read-rows.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/system-test/read-rows.ts b/system-test/read-rows.ts index 6f0395da9..59f5fac50 100644 --- a/system-test/read-rows.ts +++ b/system-test/read-rows.ts @@ -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(); @@ -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) From a40e35a90296405c7c5c5c198ec889ad12dd2341 Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Thu, 26 Jun 2025 11:29:40 -0400 Subject: [PATCH 3/3] Add imports back --- system-test/read-rows.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system-test/read-rows.ts b/system-test/read-rows.ts index 53fa570b8..ac193d4b0 100644 --- a/system-test/read-rows.ts +++ b/system-test/read-rows.ts @@ -25,6 +25,8 @@ import {EventEmitter} from 'events'; import {Test} from './testTypes'; import {ServiceError, GrpcClient, GoogleError, CallOptions} from 'google-gax'; import {PassThrough} from 'stream'; +import {TabularApiSurface} from '../src/tabular-api-surface'; +import * as proxyquire from 'proxyquire'; const {grpc} = new GrpcClient();