mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 18:59:19 +08:00
This reverts the complete work on "Improvements to mobile search" while respecting all the related changes that were made after the next two PRs: - https://github.com/discourse/discourse/pull/32306 - https://github.com/discourse/discourse/pull/31711
17 lines
430 B
Ruby
Vendored
17 lines
430 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
describe "User page search", type: :system do
|
|
fab!(:user)
|
|
let(:search_page) { PageObjects::Pages::Search.new }
|
|
|
|
it "filters down to the user" do
|
|
sign_in(user)
|
|
|
|
visit("/u/#{user.username}")
|
|
search_page.click_search_icon
|
|
search_page.click_in_posts_by_user
|
|
|
|
expect(search_page).to have_found_no_results
|
|
expect(search_page.search_term).to eq("@#{user.username}")
|
|
end
|
|
end
|