* Move all features to system * Remove database_cleaner & apply use_transactional_fixtures * Move rspec-retry to :test * Update Capybara config * Update rails_helper * Fix user_visits_a_comments_page_spec.rb * Fix lint
21 lines
546 B
Ruby
21 lines
546 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Deleting Comment", type: :system, js: true do
|
|
let(:user) { create(:user) }
|
|
let(:raw_comment) { Faker::Lorem.paragraph }
|
|
let(:article) do
|
|
create(:article, user_id: user.id, show_comments: true)
|
|
end
|
|
let(:comment) { create(:comment, commentable: article, commentable_type: "Article", user: user) }
|
|
|
|
before do
|
|
sign_in user
|
|
end
|
|
|
|
it "works" do
|
|
visit "/"
|
|
visit comment.path + "/delete_confirm"
|
|
click_link("DELETE")
|
|
expect(page).to have_current_path(article.path)
|
|
end
|
|
end
|