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/frontend/vue_shared/components/dismissible_container_spec.js')
-rw-r--r--spec/frontend/vue_shared/components/dismissible_container_spec.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/spec/frontend/vue_shared/components/dismissible_container_spec.js b/spec/frontend/vue_shared/components/dismissible_container_spec.js
new file mode 100644
index 00000000000..e49ca1e2285
--- /dev/null
+++ b/spec/frontend/vue_shared/components/dismissible_container_spec.js
@@ -0,0 +1,58 @@
+import MockAdapter from 'axios-mock-adapter';
+import { shallowMount } from '@vue/test-utils';
+import axios from '~/lib/utils/axios_utils';
+import dismissibleContainer from '~/vue_shared/components/dismissible_container.vue';
+
+describe('DismissibleContainer', () => {
+ let wrapper;
+ const propsData = {
+ path: 'some/path',
+ featureId: 'some-feature-id',
+ };
+
+ afterEach(() => {
+ wrapper.destroy();
+ });
+
+ describe('template', () => {
+ const findBtn = () => wrapper.find('[data-testid="close"]');
+ let mockAxios;
+
+ beforeEach(() => {
+ mockAxios = new MockAdapter(axios);
+ wrapper = shallowMount(dismissibleContainer, { propsData });
+ });
+
+ afterEach(() => {
+ mockAxios.restore();
+ });
+
+ it('successfully dismisses', () => {
+ mockAxios.onPost(propsData.path).replyOnce(200);
+ const button = findBtn();
+
+ button.trigger('click');
+
+ expect(wrapper.emitted().dismiss).toBeTruthy();
+ });
+ });
+
+ describe('slots', () => {
+ const slots = {
+ title: 'Foo Title',
+ default: 'default slot',
+ };
+
+ it.each(Object.keys(slots))('renders the %s slot', slot => {
+ const slotContent = slots[slot];
+ wrapper = shallowMount(dismissibleContainer, {
+ propsData,
+ slots: {
+ [slot]: `<span>${slotContent}</span>`,
+ },
+ });
+
+ expect(wrapper.text()).toContain(slotContent);
+ });
+ });
+});