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

Fix placeholder Test

Diffstat:
Atests/start.js | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

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