From 058d8ff80bf3b1f1744105f5f10fd6fbbbfbb9b1 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Sun, 20 Oct 2019 22:25:48 +0200 Subject: Move to 'tests' --- tests/pages/404.test.js | 11 +++++++++ tests/pages/__snapshots__/404.test.js.snap | 13 +++++++++++ tests/pages/__snapshots__/download.test.js.snap | 25 ++++++++++++++++++++ tests/pages/__snapshots__/index.test.js.snap | 9 +++++++ tests/pages/__snapshots__/kontakt.test.js.snap | 31 +++++++++++++++++++++++++ tests/pages/__snapshots__/o-nas.test.js.snap | 7 ++++++ tests/pages/download.test.js | 11 +++++++++ tests/pages/index.test.js | 11 +++++++++ tests/pages/kontakt.test.js | 11 +++++++++ tests/pages/o-nas.test.js | 11 +++++++++ 10 files changed, 140 insertions(+) create mode 100644 tests/pages/404.test.js create mode 100644 tests/pages/__snapshots__/404.test.js.snap create mode 100644 tests/pages/__snapshots__/download.test.js.snap create mode 100644 tests/pages/__snapshots__/index.test.js.snap create mode 100644 tests/pages/__snapshots__/kontakt.test.js.snap create mode 100644 tests/pages/__snapshots__/o-nas.test.js.snap create mode 100644 tests/pages/download.test.js create mode 100644 tests/pages/index.test.js create mode 100644 tests/pages/kontakt.test.js create mode 100644 tests/pages/o-nas.test.js (limited to 'tests/pages') diff --git a/tests/pages/404.test.js b/tests/pages/404.test.js new file mode 100644 index 0000000..76322da --- /dev/null +++ b/tests/pages/404.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import page404 from '../../pages/404' + +describe('404', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(page404) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) diff --git a/tests/pages/__snapshots__/404.test.js.snap b/tests/pages/__snapshots__/404.test.js.snap new file mode 100644 index 0000000..44419f9 --- /dev/null +++ b/tests/pages/__snapshots__/404.test.js.snap @@ -0,0 +1,13 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`404 match snapshot 1`] = ` +
+

+ 404 +

+ +

+ Nie znaleziono strony +

+
+`; diff --git a/tests/pages/__snapshots__/download.test.js.snap b/tests/pages/__snapshots__/download.test.js.snap new file mode 100644 index 0000000..05d1361 --- /dev/null +++ b/tests/pages/__snapshots__/download.test.js.snap @@ -0,0 +1,25 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`download match snapshot 1`] = ` +
+

+ Do pobrania +

+ + + Karta próby na sprawność + + + + Próba Harcerza + +
+`; diff --git a/tests/pages/__snapshots__/index.test.js.snap b/tests/pages/__snapshots__/index.test.js.snap new file mode 100644 index 0000000..af3d906 --- /dev/null +++ b/tests/pages/__snapshots__/index.test.js.snap @@ -0,0 +1,9 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`index match snapshot 1`] = ` +
+ + + +
+`; diff --git a/tests/pages/__snapshots__/kontakt.test.js.snap b/tests/pages/__snapshots__/kontakt.test.js.snap new file mode 100644 index 0000000..22be789 --- /dev/null +++ b/tests/pages/__snapshots__/kontakt.test.js.snap @@ -0,0 +1,31 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`kontakt match snapshot 1`] = ` +
+

+ Kontakt z drużynowym +

+ +

+ + tel: + + + +48695516492 + +

+ +

+ + email: + + + patryk.niedzwiedzinski@zhr.pl + +

+
+`; diff --git a/tests/pages/__snapshots__/o-nas.test.js.snap b/tests/pages/__snapshots__/o-nas.test.js.snap new file mode 100644 index 0000000..fbdc54c --- /dev/null +++ b/tests/pages/__snapshots__/o-nas.test.js.snap @@ -0,0 +1,7 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Onas match snapshot 1`] = ` +

+ O nas +

+`; diff --git a/tests/pages/download.test.js b/tests/pages/download.test.js new file mode 100644 index 0000000..78f16d9 --- /dev/null +++ b/tests/pages/download.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import download from '../../pages/download' + +describe('download', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(download) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) diff --git a/tests/pages/index.test.js b/tests/pages/index.test.js new file mode 100644 index 0000000..1e262b3 --- /dev/null +++ b/tests/pages/index.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import index from '../../pages/index' + +describe('index', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(index) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) diff --git a/tests/pages/kontakt.test.js b/tests/pages/kontakt.test.js new file mode 100644 index 0000000..d99e120 --- /dev/null +++ b/tests/pages/kontakt.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import kontakt from '../../pages/kontakt' + +describe('kontakt', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(kontakt) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) diff --git a/tests/pages/o-nas.test.js b/tests/pages/o-nas.test.js new file mode 100644 index 0000000..8b87253 --- /dev/null +++ b/tests/pages/o-nas.test.js @@ -0,0 +1,11 @@ +import { shallowMount } from '@vue/test-utils' +import Onas from '../../pages/o-nas' + +describe('Onas', () => { + // Now mount the component and you have the wrapper + const wrapper = shallowMount(Onas) + + it('match snapshot', () => { + expect(wrapper.element).toMatchSnapshot() + }) +}) -- cgit 1.4.1