Add first test in new package

This commit is contained in:
Simon Warta 2020-01-31 18:02:08 +01:00
parent 1bf2d9b287
commit 399a53e99a

View File

@ -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();
});
});