2017-11-17 22:33:58 +01:00
|
|
|
module.exports = function(config) {
|
|
|
|
config.set({
|
|
|
|
// base path that will be used to resolve all patterns (eg. files, exclude)
|
|
|
|
basePath: '',
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// frameworks to use
|
|
|
|
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
|
|
|
|
frameworks: ['jasmine', 'karma-typescript'],
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// list of files / patterns to load in the browser
|
|
|
|
files: [
|
2018-04-14 16:01:31 +02:00
|
|
|
'jslib/src/abstractions/**/*.ts',
|
|
|
|
'jslib/src/enums/**/*.ts',
|
|
|
|
'jslib/src/models/**/*.ts',
|
|
|
|
'jslib/src/services/**/*.ts',
|
2018-05-04 17:45:45 +02:00
|
|
|
'jslib/src/misc/**/*.ts',
|
2018-04-14 16:01:31 +02:00
|
|
|
'src/browser/**/*.ts',
|
2017-11-17 22:33:58 +01:00
|
|
|
'src/services/**/*.ts'
|
|
|
|
],
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// list of files to exclude
|
|
|
|
exclude: [
|
2018-06-01 19:56:11 +02:00
|
|
|
"jslib/src/services/nodeApi.service.ts",
|
|
|
|
"jslib/src/services/lowdbStorage.service.ts"
|
2017-11-17 22:33:58 +01:00
|
|
|
],
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// preprocess matching files before serving them to the browser
|
|
|
|
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
|
|
|
preprocessors: {
|
|
|
|
'**/*.ts': 'karma-typescript'
|
|
|
|
},
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// test results reporter to use
|
|
|
|
// possible values: 'dots', 'progress'
|
|
|
|
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
|
|
|
|
reporters: ['progress', 'karma-typescript', 'kjhtml'],
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// web server port
|
|
|
|
port: 9876,
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// enable / disable colors in the output (reporters and logs)
|
|
|
|
colors: true,
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// level of logging
|
|
|
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
|
|
logLevel: config.LOG_INFO,
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// start these browsers
|
|
|
|
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
|
|
|
|
browsers: ['Chrome'],
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
// Concurrency level
|
|
|
|
// how many browser should be started simultaneous
|
|
|
|
concurrency: Infinity,
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
client:{
|
|
|
|
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
|
|
|
},
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
karmaTypescriptConfig: {
|
|
|
|
tsconfig: './tsconfig.json',
|
|
|
|
compilerOptions: {
|
|
|
|
module: 'CommonJS'
|
|
|
|
},
|
|
|
|
bundlerOptions: {
|
|
|
|
entrypoints: /\.spec\.ts$/
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|