Skip to content

Commit e53efe7

Browse files
author
Wenjun Che
committed
RUN-633: init check-in
1 parent 9ae0cb7 commit e53efe7

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

Gruntfile.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,8 @@
1111

1212
module.exports = function(grunt) {
1313
var tests = ['test/**/*.js'];
14-
15-
require('load-grunt-tasks')(grunt); // load all grunt modules
16-
14+
grunt.loadNpmTasks('grunt-mocha-test');
1715
grunt.initConfig({
18-
watch: {
19-
files: tests,
20-
options: {
21-
spawn: false,
22-
event: ['added', 'changed']
23-
}
24-
},
2516
mochaTest: {
2617
test: {
2718
options: {
@@ -32,7 +23,5 @@ module.exports = function(grunt) {
3223
}
3324
}
3425
});
35-
3626
grunt.registerTask('default', 'mochaTest');
37-
3827
};

0 commit comments

Comments
 (0)