mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 08:43:39 +08:00
21 lines
416 B
Ruby
21 lines
416 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
describe "Admin Watched Words", type: :system, js: true do
|
||
|
fab!(:current_user) { Fabricate(:admin) }
|
||
|
|
||
|
before { sign_in(current_user) }
|
||
|
|
||
|
let(:ww_page) { PageObjects::Pages::AdminWatchedWords.new }
|
||
|
|
||
|
it "correctly saves watched words" do
|
||
|
ww_page.visit
|
||
|
ww_page.add_word "foo"
|
||
|
|
||
|
expect(ww_page).to have_word
|
||
|
|
||
|
ww_page.visit
|
||
|
|
||
|
expect(ww_page).to have_word
|
||
|
end
|
||
|
end
|