We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 800fbb3 commit b64dabfCopy full SHA for b64dabf
2 files changed
package.json
@@ -18,6 +18,7 @@
18
"url": "https://github.com/beeman/loopback-angular-admin/issues"
19
},
20
"scripts": {
21
+ "test": "mocha",
22
"start": "node server/server.js",
23
"dev": "nodemon server/server.js --watch server --watch common --ext js,json ",
24
"postinstall": "bower install && grunt build"
@@ -99,6 +100,7 @@
99
100
"karma-coverage": "0.2.7",
101
"karma-jasmine": "0.3.5",
102
"karma-phantomjs-launcher": "0.1.4",
103
+ "mocha": "2.3.3",
104
"run-sequence": "1.0.2",
105
"tiny-lr": "0.1.5"
106
}
test/dummy.test.js
@@ -0,0 +1,12 @@
1
+'use strict';
2
+
3
+describe('test', function () {
4
5
+ describe('dummy', function () {
6
+ it('should pass this dummy test', function (done) {
7
+ done();
8
+ });
9
10
11
12
+});
0 commit comments