2012-09-10 11:35:03 -04:00
|
|
|
module SharedNote
|
|
|
|
include Spinach::DSL
|
2017-05-17 14:25:13 -04:00
|
|
|
include WaitForRequests
|
2012-09-10 11:35:03 -04:00
|
|
|
|
2016-11-14 09:55:31 -05:00
|
|
|
after do
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests if javascript_test?
|
2016-11-14 09:55:31 -05:00
|
|
|
end
|
|
|
|
|
2014-09-21 17:40:22 -04:00
|
|
|
step 'I haven\'t written any comment text' do
|
2015-06-12 01:36:00 -04:00
|
|
|
page.within(".js-main-target-form") do
|
2013-01-14 17:55:02 -05:00
|
|
|
fill_in "note[note]", with: ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-10-17 00:36:52 -04:00
|
|
|
step 'The comment preview tab should say there is nothing to do' do
|
2015-06-12 01:36:00 -04:00
|
|
|
page.within(".js-main-target-form") do
|
2014-10-17 00:36:52 -04:00
|
|
|
find('.js-md-preview-button').click
|
|
|
|
expect(find('.js-md-preview')).to have_content('Nothing to preview.')
|
2013-01-14 17:55:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-12 12:10:06 -05:00
|
|
|
step 'I should see no notes at all' do
|
2016-05-23 19:37:59 -04:00
|
|
|
expect(page).not_to have_css('.note')
|
2016-01-12 12:10:06 -05:00
|
|
|
end
|
2012-09-10 11:35:03 -04:00
|
|
|
end
|