about summary refs log tree commit diff
path: root/tests/components/__snapshots__/NavBar.test.js.snap
diff options
context:
space:
mode:
Diffstat (limited to 'tests/components/__snapshots__/NavBar.test.js.snap')
-rw-r--r--tests/components/__snapshots__/NavBar.test.js.snap40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/components/__snapshots__/NavBar.test.js.snap b/tests/components/__snapshots__/NavBar.test.js.snap
new file mode 100644
index 0000000..89ef8e5
--- /dev/null
+++ b/tests/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>
+`;