debian-mirror-gitlab/spec/features/profiles/user_deletes_saved_reply_spec.rb
2023-05-27 22:25:52 +05:30

27 lines
611 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Profile > Saved replies > User deletes saved reply', :js,
feature_category: :user_profile do
let_it_be(:user) { create(:user) }
let_it_be(:saved_reply) { create(:saved_reply, user: user) }
before do
sign_in(user)
end
it 'shows the user a list of their saved replies' do
visit profile_saved_replies_path
find('[data-testid="saved-reply-delete-btn"]').click
page.within('.gl-modal') do
click_button 'Delete'
end
wait_for_requests
expect(page).not_to have_content(saved_reply.name)
end
end