-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathkarma.conf.js
More file actions
29 lines (24 loc) · 811 Bytes
/
Copy pathkarma.conf.js
File metadata and controls
29 lines (24 loc) · 811 Bytes
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
// Contents of: config/karma.conf.js
module.exports = function (config) {
config.set({
basePath : '',
files : [
'bower_components/jquery/jquery.js',
'bower_components/angular/angular.js',
'bower_components/angular-route/angular-route.js',
'bower_components/angular-animate/angular-animate.js',
'bower_components/angular-mocks/angular-mocks.js',
'vendor/mediaelement/mediaelement-and-player.js',
'vendor/flowplayer/flowplayer-3.2.13.min.js',
'vendor/Gauge.js',
'dist/*.js',
'directives/**/tests/*.spec.js'
],
singleRun : true,
browsers : ['Chrome'],
frameworks : ["jasmine"],
// test results reporter to use
// possible values: 'dots', 'progress', 'junit'
reporters : ['progress']
});
};