fix(ui): restore highlight modal toggle event & add dom test suite (v1.4.17)

This commit is contained in:
Kantine Wrapper
2026-02-24 20:40:54 +01:00
parent 7a82cb06db
commit c2e3282131
8 changed files with 132 additions and 21 deletions

View File

@@ -258,6 +258,14 @@ if [ $LOGIC_EXIT -ne 0 ]; then
exit 1
fi
echo "=== Running DOM Interaction Tests ==="
node "$SCRIPT_DIR/tests/test_dom.js"
DOM_EXIT=$?
if [ $DOM_EXIT -ne 0 ]; then
echo "❌ DOM UI tests FAILED! Regressions detected."
exit 1
fi
echo "=== Running Build Tests ==="
python3 "$SCRIPT_DIR/test_build.py"
TEST_EXIT=$?