UNPKG

780 BJavaScriptView Raw
1// Karma configuration
2// Generated on Wed Jul 29 2015 10:10:29 GMT+0900 (JST)
3
4module.exports = function (config) {
5 config.set({
6 basePath: '../..',
7 frameworks: ['jasmine'],
8 files: [
9 'assets/test/dependencies/angular.js',
10 'assets/test/dependencies/angular-mocks.js',
11 'assets/test/dependencies/jquery.js',
12 'assets/src/module.js',
13 'assets/src/**/*.js',
14 'assets/test/*-test.js'
15 ],
16 exclude: [
17 'assets/test/*.conf.js'
18 ],
19 preprocessors: {},
20 reporters: ['progress'],
21 port: 9876,
22 colors: true,
23 logLevel: config.LOG_INFO,
24 autoWatch: true,
25 browsers: ['Firefox'],
26 singleRun: true
27 });
28};