diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-31 11:00:58 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-31 11:00:58 +0200 |
commit | b259358616b5ca56e19b758b1f86ce2421f52c06 (patch) | |
tree | 1b7598c0b4bed7dcfaf3c009534872107888b7dc /test/components/__snapshots__/NavBar.test.js.snap | |
parent | c27b3a8208fbfde63aa512ba9c5745cbee553eab (diff) | |
download | puszcza-b259358616b5ca56e19b758b1f86ce2421f52c06.tar.gz puszcza-b259358616b5ca56e19b758b1f86ce2421f52c06.zip |
Add snapshots
Diffstat (limited to 'test/components/__snapshots__/NavBar.test.js.snap')
-rw-r--r-- | test/components/__snapshots__/NavBar.test.js.snap | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/components/__snapshots__/NavBar.test.js.snap b/test/components/__snapshots__/NavBar.test.js.snap new file mode 100644 index 0000000..fb90c28 --- /dev/null +++ b/test/components/__snapshots__/NavBar.test.js.snap @@ -0,0 +1,40 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`NavBar match snapshot 1`] = ` +<nav + class="navbar" +> + <div + class="title" + > + <!----> + + <nuxt-link + class="title-name" + to="/" + > + Title + </nuxt-link> + </div> + + <div + class="space" + /> + + <button + class="menu-toggler" + > + Menu + </button> + + <ul + class="links" + > + <navlink-stub + link="/" + name="Home" + /> + + </ul> +</nav> +`; |