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 d89c618882750dfc0fda1f2d7b840007fba3be9e
parent 4946212e6cdb7cd349f9c2d674e48f143e29fd9a
Author: MTRNord <mtrnord1@gmail.com>
Date:   Thu, 17 Mar 2016 21:18:13 +0100

Refix tests

Diffstat:
Mtests/start.js | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

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