mjolnir/test/integration/helloTest.ts
2021-09-30 15:52:06 +01:00

31 lines
1.1 KiB
TypeScript

import config from "../../src/config";
import { newTestUser, noticeListener } from "./clientHelper"
describe("help command", () => {
let client;
before(async function () {
client = await newTestUser(true);
await client.start();
})
it('Mjolnir responded to !mjolnir help', async function() {
this.timeout(30000);
console.log(`management room ${config.managementRoom}`);
// send a messgage
await client.joinRoom(config.managementRoom);
// listener for getting the event reply
let reply = new Promise((resolve, reject) => {
client.on('room.message', noticeListener(config.managementRoom, (event) => {
if (event.content.body.includes("Print status information")) {
resolve(event);
}
}))});
// check we get one back
console.log(config);
await client.sendMessage(config.managementRoom, {msgtype: "m.text", body: "!mjolnir help"})
await reply
})
after(async function () {
await client.stop();
})
})