-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathkarma.conf.js
33 lines (33 loc) · 1.09 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
module.exports = function(config) {
config.set({
browsers: [
'PhantomJS'
],
frameworks: [
'jasmine'
],
files: [
{pattern: 'Source/Core/core/resources/airplanes.json', included: false, served: true, watched: false, nocache: true},
{pattern: 'Source/Core/core/resources/airports.json', included: false, served: true, watched: false, nocache: true},
'Source/Core/core/storageManager.js',
'Source/Core/core/CarbonFootprintCommon.js',
'Source/Core/core/TrainsCarbonFootprintCore.js',
'Source/Core/core/helpers/flightDataHelper.js',
'Source/Core/core/FlightsFootprintCommon.js',
'Source/Core/core/FlightsCarbonFootprintCore.js',
'Source/Core/core/MapsCarbonFootprintCore.js',
'Source/Core/core/validator/basicValidator.js',
'Source/Core/core/validator/flightsValidator.js',
'Source/Core/core/validator/mapsValidator.js',
'Source/Core/core/validator/trainsValidator.js',
'Source/Core/core/inform.js',
'Spec/Mocks/SentryServerMock.js',
'Spec/Mocks/MockHelper.js',
'Spec/**/*Spec.js'
],
reporters: [
'mocha'
],
logLevel: config.LOG_WARN
});
};