Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/features/content_editor_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/features/content_editor_shared_examples.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/support/shared_examples/features/content_editor_shared_examples.rb b/spec/support/shared_examples/features/content_editor_shared_examples.rb
index 254bc3c83ac..fff8ef915eb 100644
--- a/spec/support/shared_examples/features/content_editor_shared_examples.rb
+++ b/spec/support/shared_examples/features/content_editor_shared_examples.rb
@@ -27,6 +27,19 @@ RSpec.shared_examples 'edits content using the content editor' do |params = { wi
expect(page).to have_text('Typing text in the content editor')
end
+ it 'autofocuses the rich text editor when switching to rich text' do
+ switch_to_content_editor
+
+ expect(page).to have_css("#{content_editor_testid}:focus")
+ end
+
+ it 'autofocuses the plain text editor when switching back to markdown' do
+ switch_to_content_editor
+ switch_to_markdown_editor
+
+ expect(page).to have_css("textarea:focus")
+ end
+
describe 'creating and editing links' do
before do
switch_to_content_editor