forked from angular/material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
61 lines (49 loc) · 1.68 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module.exports = function(config) {
var UNCOMPILED_SRC = [
'config/test-utils.js',
'src/core/**/*.js',
// Test utilities, source, and specifications.
// We are explicit like this because we don't want to put
// demos in the tests, and Karma doesn't support advanced
// globbing.
'src/components/*/*.js',
'src/components/tabs/js/*.js'
];
var COMPILED_SRC = [
// Minified source
'dist/angular-material.min.js',
// Test utilties and specifications
'config/test-utils.js',
'src/**/*.spec.js'
];
// releaseMode is a custom configuration option.
var testSrc = config.releaseMode ? COMPILED_SRC : UNCOMPILED_SRC;
config.set({
basePath: __dirname + '/..',
frameworks: ['jasmine'],
files: [
// Dependencies
'bower_components/angular/angular.js',
'bower_components/angular-animate/angular-animate.js',
'bower_components/angular-aria/angular-aria.js',
'bower_components/angular-mocks/angular-mocks.js',
'config/test-utils.js'
].concat(testSrc),
port: 9876,
reporters: ['progress'],
colors: true,
// Continuous Integration mode
// enable / disable watching file and executing tests whenever any file changes
autoWatch: false,
singleRun: false,
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera (has to be installed with `npm install karma-opera-launcher`)
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
// - PhantomJS
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
browsers: ['Chrome']
});
};