* Add Percy to Gemfile, rails helper * Percy snapshots for using the editor * Add PERCY_TOKEN to sample_application.yml * Percy snapshots for visiting the homepage * Percy snapshots for viewing an article's comments * Percy snapshots for creating an article * Percy snapshots for editing an article * Percy snapshots for logged in/out user * Remove empty spec file * Percy snapshots for settings page * Percy snapshots for reading list * Percy snapshots for admin view * Percy snapshots for moderator view * Percy snapshots for authentication views * Percy snapshots for article and tag views * Percy snapshots for editing/deleting comment views * Percy snapshots for admin views * Percy snapshots for comment views * Percy snapshots for organization views * Percy snapshots for pro membership views * Percy snapshots for podcast views * Percy snapshots for user views * Percy snapshots for dashboard views * Percy snapshots for homepage views * Percy snapshots for video views * Add js: true in tests that require it for Percy * Percy dependency cleanup * Add the Percy agent * Remove the PERCY_TOKEN from sample_application.yml * Move the Percy gem into the "test" group in the Gemfile * Remove duplicate snapshots, provide unique names to snapshots * Set seed on Faker::Config for deterministic Percy snapshots * Freeze time in js: true tests for determinstic snapshots * Upgrade Percy to v0.26.3 * Add percy: true flag for Percy snapshotting tests * Add more percy: true flags
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "User uses response templates settings", type: :system do
|
|
let!(:user) { create(:user) }
|
|
let(:response_template) { create(:response_template, user: user) }
|
|
|
|
context "when user is signed in" do
|
|
before do
|
|
sign_in user
|
|
response_template
|
|
end
|
|
|
|
context "when user has a response template already" do
|
|
it "renders the page", js: true, percy: true do
|
|
visit "/settings/response-templates"
|
|
|
|
Percy.snapshot(page, name: "Settings: /response-templates renders")
|
|
|
|
click_link "Edit"
|
|
|
|
Percy.snapshot(page, name: "Settings: /response-templates can edit")
|
|
end
|
|
|
|
it "can go to the edit page of the response template", js: true do
|
|
visit "/settings/response-templates"
|
|
click_link "Edit"
|
|
|
|
expect(page).to have_current_path "/settings/response-templates/#{response_template.id}", ignore_query: true
|
|
end
|
|
|
|
it "renders the page when deleting a response template", js: true, percy: true do
|
|
visit "/settings/response-templates"
|
|
accept_confirm { click_button "Remove" }
|
|
|
|
Percy.snapshot(page, name: "Settings: /response-templates can delete")
|
|
end
|
|
|
|
it "shows the proper message when deleting a reponse template", js: true do
|
|
visit "/settings/response-templates"
|
|
accept_confirm { click_button "Remove" }
|
|
|
|
expect(page).to have_text "was deleted."
|
|
end
|
|
end
|
|
end
|
|
end
|