about summary refs log tree commit diff
path: root/tests/components/__snapshots__/NavBar.test.js.snap
blob: 89ef8e59fbefd006da93eb5d6fda4966294e671a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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>
`;