mirror of
https://github.com/ragestudio/comty.js.git
synced 2025-06-09 02:24:18 +00:00
13 lines
215 B
JavaScript
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()
|
|
})
|