summaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/Global/InfoTooltip.spec.js28
-rw-r--r--tests/unit/Global/__snapshots__/InfoTooltip.spec.js.snap13
2 files changed, 41 insertions, 0 deletions
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`] = `
+<template>
+ <b-button
+ v-b-tooltip
+ variant="link"
+ class="btn-tooltip"
+ >
+ <icon-tooltip />
+ </b-button>
+</template>
+`;