Move web test to a different folder to not run herumi tests twice

This commit is contained in:
dapplion 2020-12-03 00:05:49 +00:00
parent d4d97795ca
commit 13ea412c3f
2 changed files with 22 additions and 23 deletions

View File

@ -3,24 +3,23 @@ const webpackConfig = require("./webpack.config");
module.exports = function (config) { module.exports = function (config) {
config.set({ config.set({
basePath: "", basePath: "",
frameworks: ["mocha", "chai"], frameworks: ["mocha", "chai"],
files: ["test/unit/run-web-implementation.test.ts", "test/unit/index-named-exports.test.ts"], files: ["test/unit-web/run-web-implementation.test.ts", "test/unit/index-named-exports.test.ts"],
exclude: [], exclude: [],
preprocessors: { preprocessors: {
"test/**/*.ts": ["webpack"] "test/**/*.ts": ["webpack"],
}, },
webpack: { webpack: {
mode: "production", mode: "production",
node: webpackConfig.node, node: webpackConfig.node,
module: webpackConfig.module, module: webpackConfig.module,
resolve: webpackConfig.resolve resolve: webpackConfig.resolve,
}, },
reporters: ["spec"], reporters: ["spec"],
browsers: ["ChromeHeadless"], browsers: ["ChromeHeadless"],
singleRun: true singleRun: true,
}); });
}; };

View File

@ -1,7 +1,7 @@
import herumi from "../../src/herumi"; import herumi from "../../src/herumi";
import {runSecretKeyTests} from "./secretKey.test"; import {runSecretKeyTests} from "../unit/secretKey.test";
import {runPublicKeyTests} from "./publicKey.test"; import {runPublicKeyTests} from "../unit/publicKey.test";
import {runIndexTests} from "./index.test"; import {runIndexTests} from "../unit/index.test";
// This file is intended to be compiled and run by Karma // This file is intended to be compiled and run by Karma
// Do not import the node.bindings or it will break with: // Do not import the node.bindings or it will break with: