Skip to content

Commit 89fe5f3

Browse files
committed
comments tests
1 parent 2d222c2 commit 89fe5f3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

__tests__/IntlAutocompletionsApi.spec.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ import {
66
} from "./testFixtures";
77

88
describe("IntlAutocompletionsApi", () => {
9+
/*
10+
** this endpoint is only available for one customer
11+
** these tests will fail for our lob-openapi account
12+
** TODO: uncomment when we make the endpoint available to all customers
13+
914
const autocompletionInput = new IntlAutocompletionsWritable({
1015
address_prefix: "35 T",
1116
city: "LONDON",
@@ -34,7 +39,6 @@ describe("IntlAutocompletionsApi", () => {
3439
const response = await autocompletionApi.autocomplete(
3540
autocompletionInput
3641
);
37-
console.log("\n\n", { response }, "\n\n");
3842
expect(response.suggestions).toBeDefined();
3943
expect(response.suggestions?.length).toBeGreaterThan(0);
4044
});
@@ -64,4 +68,5 @@ describe("IntlAutocompletionsApi", () => {
6468
}
6569
});
6670
});
71+
*/
6772
});

0 commit comments

Comments
 (0)