This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
2020-01-31 10:17:26 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
|
|
const webpackConfig = require("./webpack.config");
|
|
|
|
|
2020-11-20 19:08:53 +00:00
|
|
|
module.exports = function (config) {
|
|
|
|
config.set({
|
|
|
|
basePath: "",
|
|
|
|
frameworks: ["mocha", "chai"],
|
|
|
|
files: ["test/unit/*.ts"],
|
|
|
|
exclude: [],
|
|
|
|
preprocessors: {
|
|
|
|
"test/unit/run-web-implementation.test.ts": ["webpack"],
|
|
|
|
},
|
|
|
|
webpack: {
|
|
|
|
mode: "production",
|
|
|
|
node: webpackConfig.node,
|
|
|
|
module: webpackConfig.module,
|
|
|
|
resolve: webpackConfig.resolve,
|
|
|
|
},
|
|
|
|
reporters: ["spec"],
|
2020-01-31 10:17:26 +00:00
|
|
|
|
2020-11-20 19:08:53 +00:00
|
|
|
browsers: ["ChromeHeadless"],
|
2020-01-31 10:17:26 +00:00
|
|
|
|
2020-11-20 19:08:53 +00:00
|
|
|
singleRun: true,
|
|
|
|
});
|
|
|
|
};
|