-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathkarma-edid.conf.js
More file actions
48 lines (43 loc) · 1.32 KB
/
karma-edid.conf.js
File metadata and controls
48 lines (43 loc) · 1.32 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
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
// EDID Parser - the main code we're testing
'app/js/edid.js',
// Test data and utilities (no Angular dependencies)
'test/unit/edidTestData.js',
// EDID parser tests (will be refactored to remove Angular)
'test/unit/edid-standalone/**/*.js'
],
exclude: [
// Exclude Angular-dependent files
'test/unit/controllersSpec.js',
'test/unit/directivesSpec.js',
'test/unit/filtersSpec.js',
'test/unit/servicesSpec.js',
// Exclude original tests until refactored
'test/unit/edidSpec.js',
'test/unit/edidCTA861Spec.js',
'test/unit/edidHDMISpec.js',
'test/unit/edidHDRSpec.js',
'test/unit/edidErrorHandlingSpec.js'
],
preprocessors: {},
reporters: ['progress', 'dots'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false,
concurrency: Infinity,
// Custom configuration for EDID testing
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
// Increase timeout for complex EDID parsing
browserNoActivityTimeout: 60000,
captureTimeout: 60000
});
};