privacy_spec.rb 267 B

123456789101112
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe 'Privacy policy page' do
  4. it 'visits the privacy policy page and renders the web app' do
  5. visit privacy_policy_path
  6. expect(page)
  7. .to have_css('noscript', text: /Mastodon/)
  8. end
  9. end