mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00
Add first test in new package
This commit is contained in:
parent
1bf2d9b287
commit
399a53e99a
10
packages/sdk/src/restclient.spec.ts
Normal file
10
packages/sdk/src/restclient.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user