Added test stubs.

This commit is contained in:
Chris Kleeschulte 2017-10-12 19:01:20 -04:00
parent 2cc88a2a15
commit c52682bb70
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F
2 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,8 @@
"scripts": { "scripts": {
"build": "bower install && grunt compile", "build": "bower install && grunt compile",
"watch": "grunt", "watch": "grunt",
"install-and-build": "npm install && npm run build" "install-and-build": "npm install && npm run build",
"test": "mocha test"
}, },
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {

4
test/test.js Normal file
View File

@ -0,0 +1,4 @@
describe('should test', function() {
it('test', function() {
});
});