We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cc88a2 commit c52682bCopy full SHA for c52682b
package.json
@@ -24,7 +24,8 @@
24
"scripts": {
25
"build": "bower install && grunt compile",
26
"watch": "grunt",
27
- "install-and-build": "npm install && npm run build"
+ "install-and-build": "npm install && npm run build",
28
+ "test": "mocha test"
29
},
30
"dependencies": {},
31
"devDependencies": {
test/test.js
@@ -0,0 +1,4 @@
1
+describe('should test', function() {
2
+ it('test', function() {
3
+ });
4
+});
0 commit comments