Skip to content

Commit c52682b

Browse files
author
Chris Kleeschulte
committed
Added test stubs.
1 parent 2cc88a2 commit c52682b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"scripts": {
2525
"build": "bower install && grunt compile",
2626
"watch": "grunt",
27-
"install-and-build": "npm install && npm run build"
27+
"install-and-build": "npm install && npm run build",
28+
"test": "mocha test"
2829
},
2930
"dependencies": {},
3031
"devDependencies": {

test/test.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
describe('should test', function() {
2+
it('test', function() {
3+
});
4+
});

0 commit comments

Comments
 (0)