2021-04-23 10:45:20 +02:00
|
|
|
const path = require("path");
|
|
|
|
|
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
|
2021-12-09 21:08:34 +01:00
|
|
|
frameworks: ["jasmine", "webpack"],
|
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
|
2021-04-23 10:45:20 +02:00
|
|
|
files: [{ pattern: "src/**/*.spec.ts", watch: false }],
|
2017-11-18 03:42:25 +01:00
|
|
|
|
2017-11-17 22:33:58 +01:00
|
|
|
exclude: [],
|
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: {
|
2021-04-23 10:45:20 +02:00
|
|
|
"src/**/*.ts": "webpack",
|
2017-11-17 22:33:58 +01:00
|
|
|
},
|
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
|
2021-04-23 10:45:20 +02:00
|
|
|
reporters: ["progress", "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
|
|
|
|
2021-04-23 10:45:20 +02:00
|
|
|
webpack: {
|
|
|
|
mode: "production",
|
|
|
|
resolve: {
|
|
|
|
extensions: [".js", ".ts", ".tsx"],
|
|
|
|
alias: {
|
2021-06-07 19:25:37 +02:00
|
|
|
"jslib-common": path.join(__dirname, "jslib/common/src"),
|
2021-04-23 10:45:20 +02:00
|
|
|
"jslib-angular": path.join(__dirname, "jslib/angular/src"),
|
2017-11-17 22:33:58 +01:00
|
|
|
},
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2021-04-23 10:45:20 +02:00
|
|
|
module: {
|
|
|
|
rules: [{ test: /\.tsx?$/, loader: "ts-loader" }],
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
|
|
|
stats: {
|
2021-04-23 10:45:20 +02:00
|
|
|
colors: true,
|
|
|
|
modules: true,
|
|
|
|
reasons: true,
|
|
|
|
errorDetails: true,
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2021-04-23 10:45:20 +02:00
|
|
|
devtool: "inline-source-map",
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2017-11-17 22:33:58 +01:00
|
|
|
});
|
|
|
|
};
|