-
Notifications
You must be signed in to change notification settings - Fork 70
/
Gruntfile.js
78 lines (74 loc) · 2.25 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
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
jshint: {
options: {
jshintrc: '.jshintrc',
},
files: ['lib/**/*.js']
},
jasmine_nodejs: {
all: {
specs: ['specs/*.js']
}
},
connect: {
example: {
options: {
base: 'example'
}
},
'client-test': {
options: {
base: '.'
}
}
},
protractor: {
options: {
configFile: 'example/protractor-conf.js',
//debug: true
},
example: {}
},
browserify: {
test: {
files: {
'tests/bundle/httpMock.js': ['lib/httpMock.js']
},
options: {
browserifyOptions: {
standalone: 'httpMock'
}
}
}
},
jasmine: {
test: {
src: 'tests/bundle/httpMock.js',
options: {
specs: 'tests/*.test.js',
vendor: [
'http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.js'
],
helpers: [
'tests/setup.js'
],
template: 'tests/template.tmpl'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-jasmine-nodejs');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-protractor-runner');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.registerTask('host-example', ['connect:example:keepalive']);
grunt.registerTask('example', ['connect:example', 'protractor:example']);
grunt.registerTask('test', ['jasmine_nodejs']);
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('client-test', ['browserify:test', 'jasmine:test']);
grunt.registerTask('verify', ['lint', 'test', 'client-test', 'example']);
};