forked from phrase/angular-phrase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.unit.conf.coffee
More file actions
45 lines (34 loc) · 1002 Bytes
/
karma.unit.conf.coffee
File metadata and controls
45 lines (34 loc) · 1002 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = (config) ->
config.set
basePath: ''
frameworks: ['jasmine']
preprocessors:
'**/*.coffee': ['coffee']
files: [
'bower_components/angular/angular.js',
'bower_components/angular-translate/angular-translate.js',
'bower_components/angular-mocks/angular-mocks.js',
'src/phrase.coffee',
'src/**/*.coffee',
'test/unit/**/*_spec.coffee'
]
exclude: []
reports: ['progress']
port: 9876
colors: true
# LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO
# Start these browsers, currently available:
# - Chrome
# - ChromeCanary
# - Firefox
# - Opera
# - Safari (only Mac)
# - PhantomJS
# - IE (only Windows)
browsers: [if process.env.TRAVIS then 'Firefox' else 'Chrome']
captureTimeout: 60000
autoWatch: true
# Continuous Integration mode
# if true, it capture browsers, run tests and exit
singleRun: false