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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-10 15:09:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-10 15:09:36 +0300
commit948023c9c900344aa1e2f334bcaae5a194873b0d (patch)
tree846c5dbcec70436bca337d970bd11082f91eeb66 /spec/components/pajamas
parentf42c4be1c0d5247fac0c059ec41c9a1961485aed (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/components/pajamas')
-rw-r--r--spec/components/pajamas/alert_component_spec.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/spec/components/pajamas/alert_component_spec.rb b/spec/components/pajamas/alert_component_spec.rb
index e596f07a15a..db425fb2dce 100644
--- a/spec/components/pajamas/alert_component_spec.rb
+++ b/spec/components/pajamas/alert_component_spec.rb
@@ -138,5 +138,35 @@ RSpec.describe Pajamas::AlertComponent, :aggregate_failures, type: :component do
end
end
end
+
+ context 'with alert_options' do
+ let(:options) { { alert_options: { id: 'test_id', class: 'baz', data: { foo: 'bar' } } } }
+
+ before do
+ render_inline described_class.new(**options)
+ end
+
+ it 'renders the extra options' do
+ expect(rendered_component).to have_css "#test_id.gl-alert.baz[data-foo='bar']"
+ end
+
+ context 'with custom classes or data' do
+ let(:options) do
+ {
+ variant: :danger,
+ alert_class: 'custom',
+ alert_data: { foo: 'bar' },
+ alert_options: {
+ class: 'extra special',
+ data: { foo: 'conflict' }
+ }
+ }
+ end
+
+ it 'doesn\'t conflict with internal alert_class or alert_data' do
+ expect(rendered_component).to have_css ".extra.special.custom.gl-alert.gl-alert-danger[data-foo='bar']"
+ end
+ end
+ end
end
end