mirror of
https://github.com/vacp2p/waku-ts.git
synced 2026-01-09 13:28:11 -05:00
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { Waku } from "../src";
|
|
|
|
describe("Waku", () => {
|
|
it("needs tests", async () => {
|
|
const waku = new Waku();
|
|
expect(waku).toBeTruthy();
|
|
});
|
|
});
|