123456789101112131415161718192021222324252627282930 |
- require 'rails_helper'
- RSpec.describe 'Public Knowledge Base for guest search', type: :system, authenticated_as: false, searchindex: true do
- include_context 'basic Knowledge Base'
- before do
- configure_elasticsearch(required: true, rebuild: true) do
- published_answer && draft_answer && internal_answer
- end
- visit help_no_locale_path
- end
- it 'shows no results notification for gibberish search' do
- find('.js-search-input').fill_in with: 'Asdasdasdasdasd'
- expect(page).to have_text 'No results were found'
- end
- it 'list published article' do
- expect(page).to produce_search_result_for published_answer
- end
- it 'not list draft article' do
- expect(page).not_to produce_search_result_for draft_answer
- end
- it 'not list internal article' do
- expect(page).not_to produce_search_result_for internal_answer
- end
- end
|