aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap
blob: 6ff13c4bc7a90f9799d0a0cb6e196a6a82130b80 (plain) (blame)
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
41
42
43
44
45
46
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Avatar renders correctly 1`] = `
<div
  style={
    Object {
      "display": "flex",
      "padding": "12px",
    }
  }
>
  <div
    className="msg-avatar"
  >
    <a
      href="/ugnich/"
      onClick={[Function]}
    >
      <img
        alt="ugnich"
        src="https://juick.com/i/a/1-deadbeef.png"
      />
    </a>
  </div>
  <div
    style={
      Object {
        "display": "flex",
        "flexDirection": "column",
        "justifyContent": "center",
      }
    }
  >
    <span>
      <a
        href="/ugnich/"
        onClick={[Function]}
      >
        <span>
          ugnich
        </span>
      </a>
    </span>
  </div>
</div>
`;