mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
839f893168
* Change public accounts pages to mount the web UI * Fix handling of remote usernames in routes - When logged in, serve web app - When logged out, redirect to permalink - Fix `app-body` class not being set sometimes due to name conflict * Fix missing `multiColumn` prop * Fix failing test * Use `discoverable` attribute to control indexing directives * Fix `<ColumnLoading />` not using `multiColumn` * Add `noindex` to accounts in REST API * Change noindex directive to not be rendered by default before a route is mounted * Add loading indicator for detailed status in web UI * Fix missing indicator appearing while account is loading in web UI
34 lines
665 B
Ruby
34 lines
665 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
feature 'Profile' do
|
|
include ProfileStories
|
|
|
|
given(:local_domain) { ENV['LOCAL_DOMAIN'] }
|
|
|
|
background do
|
|
as_a_logged_in_user
|
|
with_alice_as_local_user
|
|
end
|
|
|
|
subject { page }
|
|
|
|
scenario 'I can view Annes public account' do
|
|
visit account_path('alice')
|
|
|
|
is_expected.to have_title("alice (@alice@#{local_domain})")
|
|
end
|
|
|
|
scenario 'I can change my account' do
|
|
visit settings_profile_path
|
|
|
|
fill_in 'Display name', with: 'Bob'
|
|
fill_in 'Bio', with: 'Bob is silent'
|
|
|
|
first('button[type=submit]').click
|
|
|
|
is_expected.to have_content 'Changes successfully saved!'
|
|
end
|
|
end
|