From cfd3ac0a292a1d3c6281a821122d95e224d456ea Mon Sep 17 00:00:00 2001
From: Will Hunt <half-shot@molrams.com>
Date: Mon, 20 Feb 2017 13:35:30 +0000
Subject: [PATCH] Comment out unused describe blocks for test

---
 test/test_discordbot.ts | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/test/test_discordbot.ts b/test/test_discordbot.ts
index 41f4448..40914bc 100644
--- a/test/test_discordbot.ts
+++ b/test/test_discordbot.ts
@@ -156,18 +156,18 @@ describe("DiscordBot", () => {
       return assert.isFulfilled(discordBot.LookupRoom("MyGuild", "321"));
     });
   });
-  describe("ProcessMatrixMsgEvent()", () => {
-
-  });
-  describe("UpdateRoom()", () => {
-
-  });
-  describe("UpdateUser()", () => {
-
-  });
-  describe("UpdatePresence()", () => {
-
-  });
+  // describe("ProcessMatrixMsgEvent()", () => {
+  //
+  // });
+  // describe("UpdateRoom()", () => {
+  //
+  // });
+  // describe("UpdateUser()", () => {
+  //
+  // });
+  // describe("UpdatePresence()", () => {
+  //
+  // });
   describe("OnTyping()", () => {
     const discordBot = new modDiscordBot.DiscordBot(
       config,
@@ -181,7 +181,7 @@ describe("DiscordBot", () => {
       return assert.isFulfilled(discordBot.OnTyping( {id: "321"}, {id: "12345"}, true));
     });
   });
-  describe("OnMessage()", () => {
-
-  });
+  // describe("OnMessage()", () => {
+  //
+  // });
 });
-- 
GitLab