aboutsummaryrefslogtreecommitdiff
path: root/scripts/theme-studio/run-tests.sh
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-09 04:54:53 -0500
committerCraig Jennings <c@cjennings.net>2026-06-09 04:54:53 -0500
commitd04f44ddbb213d7b443ca4432b3db13ab1a68e38 (patch)
treeac6d03010fd8220a5915fc2abdffdefe33a04371 /scripts/theme-studio/run-tests.sh
parent5be1a8058ac760b25889cc291bbca6af5e093b2a (diff)
downloaddotemacs-d04f44ddbb213d7b443ca4432b3db13ab1a68e38.tar.gz
dotemacs-d04f44ddbb213d7b443ca4432b3db13ab1a68e38.zip
test(theme-studio): pin lock behaviors with a #locktest gate
Adds a browser hash gate covering the two lock behaviors no existing gate touched: locking a row disables its control (syntax swatch div via data-locked, UI select via .disabled, both through the shared mkLockCell), and clear-unlocked wipes unlocked rows to default while leaving locked rows untouched across all three tiers. This is the characterization net for the generate.py extraction refactor — it proves the upcoming CSS/JS move preserves lock behavior. Verified it goes red when a lock guard is removed.
Diffstat (limited to 'scripts/theme-studio/run-tests.sh')
-rwxr-xr-xscripts/theme-studio/run-tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/theme-studio/run-tests.sh b/scripts/theme-studio/run-tests.sh
index b1fe54fa..51751cc2 100755
--- a/scripts/theme-studio/run-tests.sh
+++ b/scripts/theme-studio/run-tests.sh
@@ -49,7 +49,7 @@ CHROME=""
for c in google-chrome-stable google-chrome chromium chromium-browser; do
if command -v "$c" >/dev/null 2>&1; then CHROME="$c"; break; fi
done
-HASHES="selftest cursortest readouttest deltatest oklchtest planetest"
+HASHES="selftest cursortest readouttest deltatest oklchtest planetest locktest"
if [ -z "$CHROME" ]; then
for t in $HASHES; do skip_msg "#$t (no Chromium-family browser found)"; done
else