refactor!: rename chat providers to channels
This commit is contained in:
15
src/channel-web.barrel.test.ts
Normal file
15
src/channel-web.barrel.test.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
|
||||
import * as mod from "./channel-web.js";
|
||||
|
||||
describe("channel-web barrel", () => {
|
||||
it("exports the expected web helpers", () => {
|
||||
expect(mod.createWaSocket).toBeTypeOf("function");
|
||||
expect(mod.loginWeb).toBeTypeOf("function");
|
||||
expect(mod.monitorWebChannel).toBeTypeOf("function");
|
||||
expect(mod.sendMessageWhatsApp).toBeTypeOf("function");
|
||||
expect(mod.monitorWebInbox).toBeTypeOf("function");
|
||||
expect(mod.pickWebChannel).toBeTypeOf("function");
|
||||
expect(mod.WA_WEB_AUTH_DIR).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user