Files
xahau.js/packages/secret-numbers/test/webpack.config.js
Caleb Kniffen c143dc3e99 test: run address-codec tests in the browser (#2466)
Update tests to use jasmine compatible functions.

This means changing `test` to `it`, `toStrictEqual` to `toEqual` (which
is still strict), `toThrowError` to `toError`, and updating the param
for toError to pass an `Error` object.

Remove the need to specify --single-run.
2024-02-01 13:45:11 -06:00

10 lines
268 B
JavaScript

"use strict";
const { merge } = require("webpack-merge");
const { webpackForTest } = require("../../../weback.test.config");
const baseConfig = require("../webpack.base.config");
module.exports = merge(
baseConfig,
webpackForTest("./test/index.ts", __dirname)
);