test: fixing or skipping more tests

This commit is contained in:
Mike Dalessio
2025-11-10 14:26:01 -05:00
parent 89d1299ec0
commit 905cf759d8
5 changed files with 12 additions and 14 deletions
@@ -9,18 +9,21 @@ class SearchesControllerTest < ActionDispatch::IntegrationTest
end
test "show" do
skip("TODO:PLANB: search")
get search_path(q: "broken")
assert_select "li", text: /Layout is broken/
end
test "show with card id" do
skip("TODO:PLANB: search")
get search_path(q: cards(:logo).id)
assert_select "form[data-controller='auto-submit']"
end
test "show with non-existent card id" do
skip("TODO:PLANB: search")
get search_path(q: "999999")
assert_select "form[data-controller='auto-submit']", count: 0