diff --git a/packages/sdk/src/restclient.spec.ts b/packages/sdk/src/restclient.spec.ts new file mode 100644 index 00000000..e44812ee --- /dev/null +++ b/packages/sdk/src/restclient.spec.ts @@ -0,0 +1,10 @@ +import { RestClient } from "./restclient"; + +const httpUrl = "http://localhost:1317"; + +describe("RestClient", () => { + it("can be constructed", () => { + const client = new RestClient(httpUrl); + expect(client).toBeTruthy(); + }); +});