summaryrefslogtreecommitdiffstats
path: root/frontend/__tests__/__snapshots__/Nav.test.js.snap
blob: 354fbc1a4b8e44e635b7d58de5b9d8f9ce4c8bbd (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`<Nav></Nav> Renders minimal nav when logged out 1`] = `
<ul
  className="sc-dnqmqq kxZizK"
  data-test="nav"
>
  <Link
    href="/items"
  >
    <a
      href="/items"
      onClick={[Function]}
    >
      Shop
    </a>
  </Link>
  <Link
    href="/sell"
  >
    <a
      href="/sell"
      onClick={[Function]}
    >
      Sell
    </a>
  </Link>
  <Link
    href="/signup"
  >
    <a
      href="/signup"
      onClick={[Function]}
    >
      Sign In
    </a>
  </Link>
</ul>
`;