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() { + }); +});