Skip to content

Commit da21cbf

Browse files
committed
✨ certif: do not allow to close the communication banner
1 parent 8575741 commit da21cbf

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{#if this.isEnabled}}
2-
<PixBannerAlert @type={{this.bannerType}} @canCloseBanner="true">
2+
<PixBannerAlert @type={{this.bannerType}} @canCloseBanner={{false}}>
33
{{text-with-multiple-lang this.bannerContent}}
44
</PixBannerAlert>
55
{{/if}}

certif/tests/integration/components/communication-banner-test.js

-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { render } from '@1024pix/ember-testing-library';
2-
import { click } from '@ember/test-helpers';
32
import { hbs } from 'ember-cli-htmlbars';
43
import ENV from 'pix-certif/config/environment';
54
import { module, test } from 'qunit';
@@ -39,20 +38,5 @@ module('Integration | Component | communication-banner', function (hooks) {
3938

4039
// then
4140
assert.dom(screen.getByText('information banner text ...')).exists();
42-
assert.dom(screen.getByRole('button', { name: 'Fermer' })).exists();
43-
});
44-
45-
test('should close the information banner on click on close button', async function (assert) {
46-
// given
47-
ENV.APP.BANNER.CONTENT = 'information banner text ...';
48-
ENV.APP.BANNER.TYPE = 'information';
49-
const screen = await render(hbs`<CommunicationBanner />`);
50-
51-
// when
52-
await click(screen.getByRole('button', { name: 'Fermer' }));
53-
54-
// then
55-
assert.dom(screen.queryByText('information banner text ...')).doesNotExist();
56-
assert.dom(screen.queryByRole('button', { name: 'Fermer' })).doesNotExist();
5741
});
5842
});

0 commit comments

Comments
 (0)