This commit is contained in:
Pedro Gomes
2020-05-13 20:03:53 +02:00
parent 00e523fff1
commit 30a497b4f7
11 changed files with 7678 additions and 3 deletions

8
test/client.test.ts Normal file
View File

@@ -0,0 +1,8 @@
import { Waku } from "../src";
describe("Waku", () => {
it("needs tests", async () => {
const waku = new Waku();
expect(waku).toBeTruthy();
});
});