nbot

A clone of the eBot by @deStrO fully based on node.js with build in Web Page - WIP
git clone git://archive.git.mtrnord.blog/MTRNord/nbot.git
Log | Files | Refs | README | LICENSE

commit 0adc5808c276426df502046f9346dd7983ba2536
parent d89c618882750dfc0fda1f2d7b840007fba3be9e
Author: MTRNord <mtrnord1@gmail.com>
Date:   Thu, 17 Mar 2016 21:34:14 +0100

Fix Tests

Diffstat:
Mtest/start.js | 6+++---
Dtests/start.js | 9---------
2 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/test/start.js b/test/start.js @@ -1,8 +1,8 @@ -describe("Placeholder", function() { - describe("More Placeholder", function() { +var expect = require("chai").expect +describe("start", function() { + describe("Placeholder", function() { it("keeps place", function() { var placeholderVar = 1; - expect(placeholderVar).to.equal(1); }); }); diff --git a/tests/start.js b/tests/start.js @@ -1,9 +0,0 @@ -var chai = require("chai"); -describe("start", function() { - describe("Placeholder", function() { - it("keeps place", function() { - var placeholderVar = 1; - chai.expect(placeholderVar).to.equal(1); - }); - }); -});