We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92adcc8 commit 1622a36Copy full SHA for 1622a36
src/__tests__/lib/api/ContactImports.test.ts
@@ -0,0 +1,17 @@
1
+import axios from "axios";
2
+
3
+import ContactImports from "../../../lib/api/ContactImports";
4
5
+describe("lib/api/ContactImports: ", () => {
6
+ const accountId = 100;
7
+ const contactImportsAPI = new ContactImports(axios, accountId);
8
9
+ describe("class ContactImports(): ", () => {
10
+ describe("init: ", () => {
11
+ it("initializes with all necessary params.", () => {
12
+ expect(contactImportsAPI).toHaveProperty("create");
13
+ expect(contactImportsAPI).toHaveProperty("get");
14
+ });
15
16
17
+});
0 commit comments