Skip to content

Commit

Permalink
Fix "search with a filter with arguments" spec
Browse files Browse the repository at this point in the history
Since we merged in #2448, this has been repeatedly failing on CI. It
doesn't fail locally, which makes it hard to debug.

Fixes #2523
  • Loading branch information
nickcharlton committed Mar 1, 2024
1 parent 8db312b commit 6376ad6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
---
name: Tests
on:
push:
branches:
- 'main'
pull_request:
types: [opened, synchronize, reopened]
on: [push]

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion spec/features/search_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def have_a_search_bar
fill_in :search, with: "kind:vip"
submit_search

expect(page).not_to have_content(standard_match.email)
expect(page).to have_content(kind_match.email)
expect(page).not_to have_content(standard_match.email)
end

scenario "admin searches with an a term similiar to a filter", :js do
Expand Down

0 comments on commit 6376ad6

Please sign in to comment.