Whoo got unit tests that are failing...

This commit is contained in:
Lani Aung
2025-06-07 15:26:51 -07:00
parent 5e9039efad
commit 44053555ec
15 changed files with 2472 additions and 114 deletions
+23
View File
@@ -0,0 +1,23 @@
const path = require("path");
const glob = require("glob");
module.exports = {
entry: glob.sync("spec/**/*Spec.js?(x)"),
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
resolve: {
modules: [__dirname, "src", "node_modules"],
extensions: ["*", ".js", ".jsx", ".tsx", ".ts"],
},
output: {
filename: "test.js",
path: path.resolve(__dirname, "www"),
},
};