forked from angular/material
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma.conf.js
More file actions
81 lines (62 loc) · 2.33 KB
/
karma.conf.js
File metadata and controls
81 lines (62 loc) · 2.33 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
module.exports = function(config) {
var UNCOMPILED_SRC = [
// To enabled use of `gulp karma-watch`,
// don't use the dist/angular-material.js
//
//'dist/angular-material.js', // Un-minified source
// 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.
'dist/angular-material.css',
'src/core/**/*.js',
'src/components/*/*.js',
'src/components/*/js/*.js',
'src/**/*.spec.js'
];
var COMPILED_SRC = [
'dist/angular-material.min.css',
'dist/angular-material.min.js', // Minified source
'src/**/*.spec.js'
];
var dependencies = process.env.KARMA_TEST_JQUERY ? ['node_modules/jquery/dist/jquery.js'] : [];
dependencies = dependencies.concat([
'node_modules/angular/angular.js',
'node_modules/angular-animate/angular-animate.js',
'node_modules/angular-aria/angular-aria.js',
'node_modules/angular-messages/angular-messages.js',
'node_modules/angular-sanitize/angular-sanitize.js',
'node_modules/angular-touch/angular-touch.js',
'node_modules/angular-mocks/angular-mocks.js',
'test/angular-material-mocks.js',
'test/angular-material-spec.js'
]);
var testSrc = process.env.KARMA_TEST_COMPRESSED ? COMPILED_SRC : UNCOMPILED_SRC;
config.set({
basePath: __dirname + '/..',
frameworks: ['jasmine'],
files: dependencies.concat(testSrc),
browserDisconnectTimeout:500,
logLevel: config.LOG_DEBUG,
port: 9876,
reporters: ['progress'],
colors: true,
// Continuous Integration mode
// enable / disable watching file and executing tests whenever any file changes
singleRun: true,
autoWatch: 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: ['Firefox', 'PhantomJS'],
client: {
// Do not clear the context as this can cause reload failures with Jasmine
clearContext:false
}
});
};