From 6b426787b5f54c488dbc6fc695b491b8e312a49c Mon Sep 17 00:00:00 2001 From: SurenNeware Date: Thu, 31 Dec 2020 20:46:40 +0530 Subject: Add unit test cases for info tooltip component Signed-off-by: Suren Neware Change-Id: Ic89aed1f8244073eab82cdc6f79dba9520585374 --- tests/unit/Global/InfoTooltip.spec.js | 28 ++++++++++++++++++++++ .../Global/__snapshots__/InfoTooltip.spec.js.snap | 13 ++++++++++ 2 files changed, 41 insertions(+) create mode 100644 tests/unit/Global/InfoTooltip.spec.js create mode 100644 tests/unit/Global/__snapshots__/InfoTooltip.spec.js.snap (limited to 'tests') diff --git a/tests/unit/Global/InfoTooltip.spec.js b/tests/unit/Global/InfoTooltip.spec.js new file mode 100644 index 00000000..90cb301e --- /dev/null +++ b/tests/unit/Global/InfoTooltip.spec.js @@ -0,0 +1,28 @@ +import { mount, createLocalVue } from '@vue/test-utils'; +import InfoTooltip from '@/components/Global/InfoTooltip'; + +const localVue = createLocalVue(); + +describe('InfoTooltip.vue', () => { + const wrapper = mount(InfoTooltip, { + localVue, + propsData: { + title: 'A tooltip test title', + }, + mocks: { + $t: (key) => key, + }, + }); + it('should exist', () => { + expect(wrapper.exists()).toBe(true); + }); + it('should render title attribute for button', () => { + expect(wrapper.attributes('title')).toBe('title'); + }); + it('should render icon-tooltip element', () => { + expect(wrapper.find('icon-tooltip').exists()).toBe(true); + }); + it('should render correctly', () => { + expect(wrapper.element).toMatchSnapshot(); + }); +}); diff --git a/tests/unit/Global/__snapshots__/InfoTooltip.spec.js.snap b/tests/unit/Global/__snapshots__/InfoTooltip.spec.js.snap new file mode 100644 index 00000000..a3fd9be1 --- /dev/null +++ b/tests/unit/Global/__snapshots__/InfoTooltip.spec.js.snap @@ -0,0 +1,13 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`InfoTooltip.vue should render correctly 1`] = ` + +`; -- cgit v1.2.3