Skip to content

Commit

Permalink
fix two of the three failing browser tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leahecole committed Aug 23, 2023
1 parent 25f1046 commit 11d01c7
Show file tree
Hide file tree
Showing 2 changed files with 1,020 additions and 1,438 deletions.
8 changes: 4 additions & 4 deletions test/browser-test/test/test.grpc-fallback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ describe('createStub', () => {
assert(echoStub.pagedExpand instanceof Function);
assert(echoStub.wait instanceof Function);

// There should be 8 methods for the echo service
assert.strictEqual(Object.keys(echoStub).length, 8);
// There should be 10 methods for the echo service
assert.strictEqual(Object.keys(echoStub).length, 10);

// Each of the service methods should take 4 arguments (so that it works
// with createApiCall)
Expand All @@ -109,8 +109,8 @@ describe('createStub', () => {
assert(echoStub.collect instanceof Function);
assert(echoStub.chat instanceof Function);

// There should be 8 methods for the echo service
assert.strictEqual(Object.keys(echoStub).length, 8);
// There should be 10 methods for the echo service
assert.strictEqual(Object.keys(echoStub).length, 10);

// Each of the service methods should take 4 arguments (so that it works
// with createApiCall)
Expand Down
Loading

0 comments on commit 11d01c7

Please sign in to comment.