forked from outsideris/angular-summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
33 lines (27 loc) · 920 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
// Karma configuration
// Generated on Sat Jan 04 2014 16:46:43 GMT+0900 (KST)
var sharedConfig = require('./karma-shared.conf');
module.exports = function(config) {
'use strict';
sharedConfig(config, {testName: 'angular-summernote: angular-1.3.x'});
config.set({
// list of files / patterns to load in the browser
files: [
// dependencies
'../examples/components/jquery/dist/jquery.js',
'../examples/components/bootstrap/dist/js/bootstrap.min.js',
'../examples/components/summernote/dist/summernote.js',
'lang/summernote-de-DE.js',
'../examples/components/angular/angular.min.js',
// application code
'../src/**/*.js',
// test dependencies
'../examples/components/angular-mocks/angular-mocks.js',
'../examples/components/chai/chai.js',
'mocha.conf.js',
'chai.conf.js',
// test code
'*.test.js'
]
});
};