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.
chainsafe-bls/karma.conf.cjs

35 lines
802 B
JavaScript
Raw Normal View History

2020-01-31 10:17:26 +00:00
// eslint-disable-next-line @typescript-eslint/no-require-imports
const webpackConfig = require("./webpack.config.cjs");
2020-01-31 10:17:26 +00:00
module.exports = function (config) {
config.set({
basePath: "",
2022-04-14 17:16:06 +00:00
frameworks: [
"webpack",
"mocha",
2022-04-15 09:51:06 +00:00
"chai",
2022-04-14 17:16:06 +00:00
],
files: [
"test/unit-web/run-web-implementation.test.ts",
"test/unit/index-named-exports.test.ts",
],
exclude: [],
preprocessors: {
"test/**/*.ts": ["webpack"],
},
webpack: {
mode: "production",
module: webpackConfig.module,
resolve: webpackConfig.resolve,
2022-04-14 17:16:06 +00:00
experiments: webpackConfig.experiments,
optimization: webpackConfig.optimization,
stats: {warnings:false},
},
reporters: ["spec"],
2020-01-31 10:17:26 +00:00
browsers: ["ChromeHeadless"],
2020-01-31 10:17:26 +00:00
singleRun: true,
});
};