forked from akoenig/angular-deckgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
45 lines (33 loc) · 789 Bytes
/
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
/*
* angular-deckgrid
*
* Copyright(c) 2013-2014 André König <[email protected]>
* MIT Licensed
*
*/
/**
* @author André König ([email protected])
*
*/
module.exports = function (config) {
'use strict';
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'bower_components/jquery/jquery.js',
'bower_components/angular/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'src/index.js',
'src/descriptor.js',
'src/deckgrid.js',
'specs/*.js'
],
exclude: [],
port: 8080,
logLevel: config.LOG_DEBUG,
autoWatch: false,
browsers: ['Chrome'],
singleRun: true
});
};