diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-21 11:00:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 11:00:33 +0200 |
commit | d1c6e2eaed90891fc8e187f147af224b352662c8 (patch) | |
tree | 982bd663d60b22b14f719af03cd459e5ee3b3ed4 /tests/pages/__snapshots__ | |
parent | 72549ed7b81fc01445fecdb7889bab4cf2a1590f (diff) | |
parent | 07ac4a05a3e02c95ba9482f94f19589b8ab7fd3c (diff) | |
download | puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.tar.gz puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.zip |
Merge pull request #3 from 19pdh/kronika
Kronika
Diffstat (limited to 'tests/pages/__snapshots__')
-rw-r--r-- | tests/pages/__snapshots__/404.test.js.snap | 13 | ||||
-rw-r--r-- | tests/pages/__snapshots__/download.test.js.snap | 25 | ||||
-rw-r--r-- | tests/pages/__snapshots__/index.test.js.snap | 9 | ||||
-rw-r--r-- | tests/pages/__snapshots__/kontakt.test.js.snap | 31 | ||||
-rw-r--r-- | tests/pages/__snapshots__/o-nas.test.js.snap | 7 |
5 files changed, 85 insertions, 0 deletions
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`] = ` +<div> + <h1> + 404 + </h1> + + <p> + Nie znaleziono strony + </p> +</div> +`; 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`] = ` +<div + class="container" +> + <h1> + Do pobrania + </h1> + + <a + class="link" + href="/files/Karta_próby_na_sprawność.pdf" + > + Karta próby na sprawność + </a> + + <a + class="link" + href="/files/Próba_Harcerza.pdf" + > + Próba Harcerza + </a> +</div> +`; 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`] = ` +<div> + <joinus-stub /> + + <facebookfeed-stub /> +</div> +`; 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`] = ` +<div> + <h1> + Kontakt z drużynowym + </h1> + + <p> + + tel: + + <a + href="tel:+48695516492" + > + +48695516492 + </a> + </p> + + <p> + + email: + + <a + href="mailto:patryk.niedzwiedzinski@zhr.pl" + > + patryk.niedzwiedzinski@zhr.pl + </a> + </p> +</div> +`; 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`] = ` +<h1> + O nas +</h1> +`; |