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

Commit 2b4691d

Browse files
committed
Update tests with more accurate descriptions
of what they do
1 parent 941c6eb commit 2b4691d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/with-createreadstream-mockserver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import * as assert from 'assert';
1919
import {startServer} from '../mock-server/datastore-server';
2020
import {sendNonRetryableError} from './mock-server-tester';
2121

22-
describe.skip('lookup', () => {
23-
it('should report an error to the user when it occurs', done => {
22+
describe.skip('Should make calls to lookup', () => {
23+
it('should report a NOT_FOUND error to the user when it occurs', done => {
2424
startServer(
2525
async () => {
2626
try {

test/with-runquery-mockserver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import * as assert from 'assert';
1919
import {startServer} from '../mock-server/datastore-server';
2020
import {ErrorGenerator, shutdownServer} from './mock-server-tester';
2121

22-
describe.skip('runQuery', () => {
23-
it('should report an error to the user when it occurs', done => {
22+
describe.skip('Should make calls to runQuery', () => {
23+
it('should report a DEADLINE_EXCEEDED error to the user when it occurs with the original error details', done => {
2424
const errorGenerator = new ErrorGenerator();
2525
const server = startServer(
2626
async () => {

0 commit comments

Comments
 (0)