forked from heiko-braun/redhat_access_angular_ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
92 lines (77 loc) · 3.33 KB
/
karma.conf.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
// Karma configuration
// http://karma-runner.github.io/0.10/config/configuration-file.html
module.exports = function(config) {
config.set({
// base path, that will be used to resolve files and exclude
basePath: '',
// testing framework to use (jasmine/mocha/qunit/...)
frameworks: ['jasmine'],
// list of files / patterns to load in the browser
files: [
'bower_components/jsUri/Uri.min.js',
'bower_components/jquery/jquery.js',
'bower_components/angular/angular.js',
'bower_components/bootstrap/dist/js/bootstrap.js',
'bower_components/angular-gettext/dist/angular-gettext.min.js',
'bower_components/angular-resource/angular-resource.js',
'bower_components/angular-sanitize/angular-sanitize.js',
'bower_components/angular-route/angular-route.js',
'bower_components/angular-ui-router/release/angular-ui-router.js',
'bower_components/angular-bootstrap/ui-bootstrap-tpls.js',
'bower_components/js-markdown-extra/js-markdown-extra.js',
'bower_components/stratajs/strata.js',
'bower_components/ng-table/ng-table.js',
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/angular-treeview/angular.treeview.min.js',
'bower_components/sinon/lib/sinon.js',
'bower_components/sinon/lib/sinon/spy.js',
'bower_components/sinon/lib/sinon/call.js',
//'bower_components/sinon/lib/sinon/behavior.js',
'bower_components/sinon/lib/sinon/stub.js',
'bower_components/sinon/lib/sinon/mock.js',
'bower_components/sinon/lib/sinon/collection.js',
'bower_components/sinon/lib/sinon/assert.js',
'bower_components/sinon/lib/sinon/sandbox.js',
'bower_components/sinon/lib/sinon/test.js',
'bower_components/sinon/lib/sinon/test_case.js',
'bower_components/sinon/lib/sinon/assert.js',
'bower_components/sinon/lib/sinon/match.js',
'.tmp/templates/RedhatAccess.template.js',
'app/common/**/*.js',
'app/security/**/*.js',
'app/search/**/*.js',
'app/cases/**/*.js',
'app/log_viewer/*.js',
'test/spec/**/*.js'
//'app/**/*.html'
],
// ngHtml2JsPreprocessor: {
// // strip app from the file path
// stripPrefix: 'app/'
// },
// preprocessors: {
// 'app/**/*.html': 'html2js'
// },
// list of files / patterns to exclude
exclude: [],
// web server port
port: 8080,
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: ['PhantomJS'],
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
});
};