aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap
blob: ef7be4edf15e002545d6c8dc88130634e8f5a436 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

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