-
Notifications
You must be signed in to change notification settings - Fork 115
/
Gruntfile.js
47 lines (42 loc) · 1.32 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
module.exports = function (grunt) {
grunt.initConfig({
jshint: {
options: {
jshintrc: true,
ignores: [
'describe',
'it'
]
},
files: [
'lib/**/*.js',
'test/**/*.js',
'index.js'
]
},
simplemocha: {
options: {
globals: ['should'],
timeout: 3000,
ignoreLeaks: false,
ui: 'bdd',
reporter: 'tap'
},
api: {src: 'test/api/*-test.js'},
unit: {src: 'test/unit/*-test.js'}
},
'blueprint-validator': {
'contract-test':{
mdFiles: 'test/example/**/*.md',
failOnWarnings: true
}
}
});
// For this to work, you need to have run `npm install grunt-simple-mocha`
grunt.loadNpmTasks('grunt-simple-mocha');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-blueprint-validator');
grunt.task.registerTask('unit-test', ['simplemocha:unit']);
grunt.task.registerTask('test', ['blueprint-validator', 'simplemocha:api', 'simplemocha:unit']);
grunt.task.registerTask('default', ['jshint', 'test']);
};