From c52682bb702f87f2ea39e24f1fa79bf1c4ec7418 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Thu, 12 Oct 2017 19:01:20 -0400 Subject: [PATCH] Added test stubs. --- package.json | 3 ++- test/test.js | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 test/test.js diff --git a/package.json b/package.json index 19e44b8a9..43c452c29 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,8 @@ "scripts": { "build": "bower install && grunt compile", "watch": "grunt", - "install-and-build": "npm install && npm run build" + "install-and-build": "npm install && npm run build", + "test": "mocha test" }, "dependencies": {}, "devDependencies": { diff --git a/test/test.js b/test/test.js new file mode 100644 index 000000000..75c2690d6 --- /dev/null +++ b/test/test.js @@ -0,0 +1,4 @@ +describe('should test', function() { + it('test', function() { + }); +});