-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathkarma.conf.js
More file actions
39 lines (39 loc) · 1.07 KB
/
karma.conf.js
File metadata and controls
39 lines (39 loc) · 1.07 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
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
'app/lib/angular/angular.js',
'app/lib/angular/angular-*.js',
'test/lib/angular/angular-mocks.js',
'app/js/**/*.js',
// Test data and utilities
'test/unit/edidTestData.js',
// Core EDID parser tests
'test/unit/edidSpec.js',
// CTA-861 extension tests
'test/unit/edidCTA861Spec.js',
// HDMI vendor-specific data block tests
'test/unit/edidHDMISpec.js',
// HDR metadata parsing tests
'test/unit/edidHDRSpec.js',
// Error handling and edge cases
'test/unit/edidErrorHandlingSpec.js',
// Legacy tests
'test/unit/controllersSpec.js',
'test/unit/directivesSpec.js',
'test/unit/filtersSpec.js',
'test/unit/servicesSpec.js'
],
exclude: [],
preprocessors: {},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
concurrency: Infinity
});
};