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) {
config.set({
basePath: "",
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: [],
preprocessors: {
"test/**/*.ts": ["webpack"]
"test/**/*.ts": ["webpack"],
},
webpack: {
mode: "production",
node: webpackConfig.node,
module: webpackConfig.module,
resolve: webpackConfig.resolve
resolve: webpackConfig.resolve,
},
reporters: ["spec"],
browsers: ["ChromeHeadless"],
singleRun: true
singleRun: true,
});
};

View File

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