37 lines
		
	
	
		
			880 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			880 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe 'Share page', :js, :streaming do
 | 
						|
  include ProfileStories
 | 
						|
 | 
						|
  let(:email)               { 'test@example.com' }
 | 
						|
  let(:password)            { 'password' }
 | 
						|
  let(:confirmed_at)        { Time.zone.now }
 | 
						|
  let(:finished_onboarding) { true }
 | 
						|
 | 
						|
  before { as_a_logged_in_user }
 | 
						|
 | 
						|
  it 'allows posting a new status' do
 | 
						|
    visit share_path
 | 
						|
 | 
						|
    expect(page)
 | 
						|
      .to have_css('.modal-layout__mastodon')
 | 
						|
      .and have_css('div#mastodon-compose')
 | 
						|
      .and have_css('.compose-form__submit')
 | 
						|
 | 
						|
    fill_in_form
 | 
						|
 | 
						|
    expect(page)
 | 
						|
      .to have_current_path(%r{/@bob/[0-9]+})
 | 
						|
  end
 | 
						|
 | 
						|
  def fill_in_form
 | 
						|
    within('.compose-form') do
 | 
						|
      fill_in frontend_translations('compose_form.placeholder'),
 | 
						|
              with: 'This is a new status!'
 | 
						|
      click_on frontend_translations('compose_form.publish')
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |