aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/__tests__/__snapshots__/Avatar.test.js.snap
blob: e44b49db18ecb56ee8e985ef0fc55e6e687930d1 (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
47
48
49
50
51
52
// 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
      itemProp="author"
      itemScope=""
      itemType="http://schema.org/Person"
    >
      <a
        href="/ugnich/"
        itemProp="url"
        onClick={[Function]}
        rel="author"
      >
        <span
          itemProp="name"
        >
          ugnich
        </span>
      </a>
    </span>
  </div>
</div>
`;