blob: 65118f07ca2d4b3839651dbdc25e47afbb5e10ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
module SharedMarkdown
include Spinach::DSL
step 'I should not see the Markdown preview' do
expect(find('.gfm-form .js-md-preview')).not_to be_visible
end
step 'I haven\'t written any description text' do
find('.gfm-form').fill_in 'Description', with: ''
end
end
|