forked from nicgirault/circosJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.coffee
43 lines (43 loc) · 1.07 KB
/
karma.conf.coffee
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
module.exports = (config) ->
config.set
frameworks: ['mocha', 'chai', 'sinon']
files: [
'bower_components/d3/d3.js'
'bower_components/d3-tip/index.js'
'src/polyfill.coffee'
'src/circos.coffee'
'src/dataParser.coffee'
'src/layout.coffee'
'src/render.coffee'
'src/renderLayout.coffee'
'src/tracks.coffee'
'src/tracks/*.coffee'
'src/defaultParameters.coffee'
'src/behaviors/*.coffee'
'test/**/*.coffee'
]
exclude: []
preprocessors:
'**/*.coffee': ['coffee']
'src/**/*.coffee': ['coverage']
coverageReporter:
dir: 'coverage'
reporters: [
type: 'html'
subdir: 'client-report'
,
type: 'text-summary'
]
watermarks:
statements: [70, 80]
functions: [70, 80]
branches: [70, 80]
lines: [70, 80]
reporters: [ 'progress' , 'coverage' ]
port: 9876
colors: true
logLevel: config.LOG_INFO
autoWatch: true
browsers: [ 'PhantomJS' ]
singleRun: process.env.SINGLE_RUN || true
return