blob: e5abf397754615432d4c6efc0c592dbfa3abbb97 [file] [log] [blame]
Matteo Scandoloa7ad4992016-05-09 15:27:47 -07001// Karma configuration
2// Generated on Tue Oct 06 2015 09:27:10 GMT+0000 (UTC)
3
4/* eslint indent: [2,2], quotes: [2, "single"]*/
5
6/*eslint-disable*/
7var wiredep = require('wiredep');
8var path = require('path');
9
10var bowerComponents = wiredep( {devDependencies: true} )[ 'js' ].map(function( file ){
11 return path.relative(process.cwd(), file);
12});
13
14module.exports = function(config) {
15/*eslint-enable*/
16 config.set({
17
18 // base path that will be used to resolve all patterns (eg. files, exclude)
19 basePath: '',
20
21
22 // frameworks to use
23 // available frameworks: https://npmjs.org/browse/keyword/karma-adapter
24 frameworks: ['jasmine'],
25
26
27 // list of files / patterns to load in the browser
28 files: bowerComponents.concat([
Matteo Scandolo195dde92016-07-25 16:43:16 -070029 './src/vendor/ng-xos-lib/dist/ngXosVendor.min.js',
30 './src/vendor/ng-xos-lib/dist/ngXosHelpers.min.js',
31 'src/js/main.js',
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070032 'src/js/**/*.js',
33 'spec/**/*.mock.js',
34 'spec/**/*.test.js',
35 'src/**/*.html'
36 ]),
37
38
39 // list of files to exclude
40 exclude: [
41 ],
42
43
44 // preprocess matching files before serving them to the browser
45 // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
46 preprocessors: {
47 'src/js/**/*.js': ['babel'],
48 'spec/**/*.test.js': ['babel'],
Matteo Scandolo195dde92016-07-25 16:43:16 -070049 'spec/**/*.mock.js': ['babel'],
Matteo Scandoloa7ad4992016-05-09 15:27:47 -070050 'src/**/*.html': ['ng-html2js']
51 },
52
53 ngHtml2JsPreprocessor: {
54 stripPrefix: 'src/', //strip the src path from template url (http://stackoverflow.com/questions/22869668/karma-unexpected-request-when-testing-angular-directive-even-with-ng-html2js)
55 moduleName: 'templates' // define the template module name
56 },
57
58 // test results reporter to use
59 // possible values: 'dots', 'progress'
60 // available reporters: https://npmjs.org/browse/keyword/karma-reporter
61 reporters: ['mocha'],
62
63
64 // web server port
65 port: 9876,
66
67
68 // enable / disable colors in the output (reporters and logs)
69 colors: true,
70
71
72 // level of logging
73 // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
74 logLevel: config.LOG_INFO,
75
76
77 // enable / disable watching file and executing tests whenever any file changes
78 autoWatch: true,
79
80
81 // start these browsers
82 // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
83 browsers: ['PhantomJS'],
84
85
86 // Continuous Integration mode
87 // if true, Karma captures browsers, runs the tests and exits
88 singleRun: false
89 });
90};