-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Gruntfile.js
53 lines (49 loc) · 1.59 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module.exports = function(grunt) {
grunt.initConfig({
express: {
test: {
options: {
script: 'app.js',
output: ".*express server listening on port 3000.*",
node_env: 'development',
logs: {
out: '/dev/null'
}
}
}
},
'qunit-node': {
options: {
noglobals: true,
setup: function (QUnit) {
// a separate function to report test failures
QUnit.on('testEnd', function (test) {
if (test.status !== 'failed') {
return;
}
grunt.log.writeln(('not ok ' + test.fullName.join(' > ')).red);
test.errors.forEach(function (error) {
grunt.log.writeln(error.message);
});
});
}
},
test: {
src: 'tests/qunit/**/*.js'
}
},
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['tests/mocha/**/*.js']
}
}
});
grunt.loadNpmTasks('grunt-express-server');
grunt.loadNpmTasks('grunt-qunit-node');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.registerTask('mocha', ['express', 'mochaTest'])
grunt.registerTask('default', ['qunit-node', 'mocha']);
};