fixed spec/features/projects/files/edit_file_soft_wrap_spec.rb

This commit is contained in:
Phil Hughes 2017-09-27 12:08:31 +01:00
parent c01338cba5
commit 54a6bcae95
No known key found for this signature in database
GPG Key ID: 32245528C52E0F9F
1 changed files with 13 additions and 13 deletions

View File

@ -7,18 +7,18 @@ feature 'User uses soft wrap whilst editing file', js: true do
project.team << [user, :master] project.team << [user, :master]
sign_in user sign_in user
visit project_new_blob_path(project, 'master', file_name: 'test_file-name') visit project_new_blob_path(project, 'master', file_name: 'test_file-name')
editor = find('.file-editor.code') page.within('.file-editor.code') do
editor.click find('.ace_text-input', visible: false).send_keys 'Touch water with paw then recoil in horror chase dog then
editor.send_keys 'Touch water with paw then recoil in horror chase dog then run away chase the pig around the house eat owner\'s food, and knock
run away chase the pig around the house eat owner\'s food, and knock dish off table head butt cant eat out of my own dish. Cat is love, cat
dish off table head butt cant eat out of my own dish. Cat is love, cat is life rub face on everything poop on grasses so meow. Playing with
is life rub face on everything poop on grasses so meow. Playing with balls of wool flee in terror at cucumber discovered on floor run in
balls of wool flee in terror at cucumber discovered on floor run in circles tuxedo cats always looking dapper, but attack dog, run away
circles tuxedo cats always looking dapper, but attack dog, run away and pretend to be victim so all of a sudden cat goes crazy, yet chase
and pretend to be victim so all of a sudden cat goes crazy, yet chase laser. Make muffins sit in window and stare ooo, a bird! yum lick yarn
laser. Make muffins sit in window and stare ooo, a bird! yum lick yarn hanging out of own butt jump off balcony, onto stranger\'s head yet
hanging out of own butt jump off balcony, onto stranger\'s head yet chase laser. Purr for no reason stare at ceiling hola te quiero.'.squish
chase laser. Purr for no reason stare at ceiling hola te quiero.'.squish end
end end
let(:toggle_button) { find('.soft-wrap-toggle') } let(:toggle_button) { find('.soft-wrap-toggle') }
@ -36,6 +36,6 @@ feature 'User uses soft wrap whilst editing file', js: true do
end end
def get_content_width def get_content_width
find('.ace_content')[:style].slice!(/width: \d+/).slice!(/\d+/) find('.ace_content')[:style].slice!(/width: \d+/).slice!(/\d+/).to_i
end end
end end