-
Notifications
You must be signed in to change notification settings - Fork 276
/
Gruntfile.js
87 lines (84 loc) · 2.76 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
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-release');
grunt.loadNpmTasks('grunt-karma');
grunt.initConfig({
karma: {
options: {
configFile: 'karma.conf.js',
browsers: ['Chrome']
},
ci: {
singleRun: true,
preprocessors: {'*.js': 'coverage'},
reporters: ['progress', 'coverage'],
coverageReporter: {type: 'lcov'}
},
ci_travis: {
singleRun: true,
preprocessors: {'*.js': 'coverage'},
reporters: ['progress', 'coverage'],
coverageReporter: {type: 'lcov'},
browsers: ['PhantomJS']
},
dev: {
background: true
},
angular3: {
background: true,
options: {
files: [
'bower_components/jquery/dist/jquery.js',
'demo/angular.1.3.12.js',
'demo/angular-mocks.1.3.12.js',
'angular-tree-control.js',
'context-menu.js',
'test/**/*.js'
]
}
}
},
connect: {
options: {
livereload: true,
port: 9000,
open: 'http://localhost:<%= connect.options.port %>/index.html'
},
server: {
}
},
watch: {
options: {
livereload: true
},
tests: {
files: ['*.js', 'test/**/*.js', '{demo,css,images}/*.*'],
tasks: ['karma:dev:run']
},
angular3: {
files: ['*.js', 'test/**/*.js', '{demo,css,images}/*.*'],
tasks: ['karma:angular3:run']
}
},
release: {
options: {
additionalFiles: ['bower.json']
}
}
});
//run tests only once (continuous integration mode)
// grunt.registerTask('test', ['karma:ci']);
grunt.registerTask('test', function() {
console.log("running on environment: ", process.env.TREE_CI_ENV);
if (process.env.TREE_CI_ENV == 'travis') {
grunt.task.run(['karma:ci_travis']);
}
else {
grunt.task.run(['karma:ci']);
}
});
//to debug tests during 'grunt serve', open: http://localhost:8880/debug.html
grunt.registerTask('serve', ['karma:dev', 'connect', 'watch']);
grunt.registerTask('angular3', ['karma:angular3', 'watch:angular3']);
};