comty.js/tests/main.js
2024-03-15 20:41:22 +00:00

13 lines
215 B
JavaScript

const test = require("ava")
const lib = require("../dist/index")
test("create client", async (t) => {
console.log(lib)
const client = await lib.createClient()
console.log(client)
t.pass()
})