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/features/markdown/markdown_spec.rb')
-rw-r--r--spec/features/markdown/markdown_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/features/markdown/markdown_spec.rb b/spec/features/markdown/markdown_spec.rb
index 132a03877f8..6e62aa892bb 100644
--- a/spec/features/markdown/markdown_spec.rb
+++ b/spec/features/markdown/markdown_spec.rb
@@ -296,6 +296,11 @@ RSpec.describe 'GitLab Markdown', :aggregate_failures, feature_category: :team_p
expect(img.attr('width')).to eq('75%')
expect(img.attr('height')).to eq('100')
+
+ vid = doc.at_css('video[data-title="Sized Video"]')
+
+ expect(vid.attr('width')).to eq('75%')
+ expect(vid.attr('height')).to eq('100')
end
end
end