From f78ad5f9689360dab6898d1d0f2f534ed499503c Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Mon, 10 Aug 2026 23:01:58 +0300 Subject: [PATCH] test header button removal --- nix/tests/module.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/tests/module.nix b/nix/tests/module.nix index 1a53a53..b3de3b3 100644 --- a/nix/tests/module.nix +++ b/nix/tests/module.nix @@ -81,5 +81,11 @@ pkgs.runCommand "tide-module-test" { } '' ${pkgs.gnugrep}/bin/grep -F \ "https://chat.whatsapp.com/FLdSwkdiChA9wvXxooUV9K" \ ${landingPage}/index.html + if ${pkgs.gnugrep}/bin/grep -F \ + 'class="button button--small"' \ + ${landingPage}/index.html; then + echo "unexpected small button in landing-page header" >&2 + exit 1 + fi touch "$out" ''