115 строки
3.7 KiB
TypeScript
115 строки
3.7 KiB
TypeScript
/*
|
|
* Power BI Visualizations
|
|
*
|
|
* Copyright (c) Microsoft Corporation
|
|
* All rights reserved.
|
|
* MIT License
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the ""Software""), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const webpackConfig = require("./webpack.config.js");
|
|
const tsconfig = require("./tsconfig.json");
|
|
|
|
const testRecursivePath = "test/**/*.ts";
|
|
const srcOriginalRecursivePath = "src/**/*.ts";
|
|
const srcRecursivePath = "lib/**/*.js";
|
|
const srcCssRecursivePath = "lib/**/*.css";
|
|
const coverageFolder = "coverage";
|
|
|
|
process.env.CHROME_BIN = require("playwright-chromium").chromium.executablePath();
|
|
module.exports = (config) => {
|
|
config.set({
|
|
browsers: ["ChromeHeadless"],
|
|
colors: true,
|
|
frameworks: ["jasmine"],
|
|
reporters: [
|
|
"progress",
|
|
"coverage-istanbul"
|
|
],
|
|
coverageIstanbulReporter: {
|
|
reports: ["html", "lcovonly", "text-summary"],
|
|
combineBrowserReports: true,
|
|
fixWebpackSourcePaths: true
|
|
},
|
|
singleRun: true,
|
|
plugins: [
|
|
"karma-coverage",
|
|
"karma-typescript",
|
|
"karma-webpack",
|
|
"karma-jasmine",
|
|
"karma-sourcemap-loader",
|
|
"karma-chrome-launcher",
|
|
"karma-coverage-istanbul-reporter"
|
|
],
|
|
files: [
|
|
srcCssRecursivePath,
|
|
srcRecursivePath,
|
|
testRecursivePath,
|
|
{
|
|
pattern: srcOriginalRecursivePath,
|
|
included: false,
|
|
served: true
|
|
},
|
|
{
|
|
pattern: "test/images/*.+(png|jpg|gif|svg|bmp)",
|
|
watched: false,
|
|
included: false,
|
|
served: true
|
|
},
|
|
{
|
|
pattern: "test/data/*.txt",
|
|
watched: false,
|
|
included: false,
|
|
served: true
|
|
}
|
|
],
|
|
preprocessors: {
|
|
[testRecursivePath]: ["webpack"],
|
|
[srcRecursivePath]: ["webpack", "sourcemap", "coverage"]
|
|
},
|
|
typescriptPreprocessor: {
|
|
options: tsconfig.compilerOptions
|
|
},
|
|
coverageReporter: {
|
|
dir: coverageFolder,
|
|
reporters: [
|
|
{ type: "html" },
|
|
{ type: "lcov" }
|
|
]
|
|
},
|
|
remapIstanbulReporter: {
|
|
reports: {
|
|
lcovonly: coverageFolder + "/lcov.info",
|
|
html: coverageFolder,
|
|
"text-summary": null
|
|
}
|
|
},
|
|
mime: {
|
|
"text/x-typescript": ["ts", "tsx"]
|
|
},
|
|
webpack: webpackConfig,
|
|
webpackMiddleware: {
|
|
stats: "errors-only"
|
|
}
|
|
});
|
|
};
|