-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gruntfile.js
104 lines (97 loc) · 2.58 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
module.exports = function (grunt) {
'use strict';
/* jshint -W107 */
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-mocha');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-continue');
grunt.loadNpmTasks('grunt-bump');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: [
'Gruntfile.js',
'index.js',
'test/*.js',
],
options: {
reporter: './node_modules/jshint-path-reporter',
jshintrc: '.jshintrc'
}
},
bump: {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: [],
commit: true,
commitMessage: 'release v%VERSION%',
commitFiles: ['-a'],
createTag: true,
tagName: '%VERSION%',
tagMessage: 'release %VERSION%',
push: false,
pushTo: 'upstream',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' // options to use with '$ git describe'
}
},
mochaTest: {
options: {
reporter: 'mocha-unfunk-reporter'
},
pass: {
src: ['test/suite.js']
},
fail : {
options: {
reporter: 'mocha-unfunk-reporter'
},
src: ['test/fail.js']
}
},
mocha: {
options: {
bail: true,
log: true,
mocha: {
ignoreLeaks: false
},
reporter: 'mocha-unfunk-reporter',
run: true
},
pass: {
src: ['test/pass.html']
},
pass_amd: {
options: {
run: false
},
src: ['test/pass-amd.html']
},
fail: {
src: ['test/fail.html']
},
fail_spec : {
options: {
reporter: 'Spec'
},
src: ['test/fail.html']
},
fail_amd : {
options: {
run: false
},
src: ['test/fail-amd.html']
}
}
});
grunt.registerTask('pass', ['mochaTest:pass', 'mocha:pass', 'mocha:pass_amd']);
grunt.registerTask('fail', ['mochaTest:fail', 'mocha:fail', 'mocha:fail_amd']);
grunt.registerTask('run', ['build', 'mochaTest']);
grunt.registerTask('dev', ['build', 'continue:on', 'mocha:fail', 'continue:off', 'mocha:pass']);
grunt.registerTask('edit_01', ['build', 'mochaTest:pass']);
grunt.registerTask('edit_02', ['build', 'mochaTest:fail']);
grunt.registerTask('edit_03', ['build', 'mocha:fail']);
grunt.registerTask('test', ['build', 'pass', 'continue:on', 'fail', 'continue:off']);
grunt.registerTask('build', ['jshint']);
grunt.registerTask('default', ['test']);
};