summaryrefslogtreecommitdiffstats
path: root/webapp/tests/plugins/__snapshots__/pluggable.test.jsx.snap
blob: 2f7a5e2325ec1b79c95be5416786a6e44c59cb89 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`plugins/Pluggable should match snapshot with no overridden component 1`] = `
<IntlProvider>
  <Pluggable
    components={Object {}}
    theme={Object {}}
  >
    <ProfilePopover
      hasMention={false}
      isRHS={false}
      src="src"
      theme={Object {}}
      user={Object {}}
    >
      <Popover
        bsClass="popover"
        id="user-profile-popover"
        placement="right"
        theme={Object {}}
        title="@undefined"
      >
        <div
          className="popover right"
          id="user-profile-popover"
          role="tooltip"
          style={
            Object {
              "display": "block",
              "left": undefined,
              "top": undefined,
            }
          }
          theme={Object {}}
        >
          <div
            className="arrow"
            style={
              Object {
                "left": undefined,
                "top": undefined,
              }
            }
          />
          <h3
            className="popover-title"
          >
            @undefined
          </h3>
          <div
            className="popover-content"
          >
            <img
              className="user-popover__image"
              height="128"
              src="src"
              width="128"
            />
            <div
              className="popover__row first"
              data-toggle="tooltip"
            >
              <a
                className="text-nowrap text-lowercase user-popover__email"
                href="#"
                onClick={[Function]}
              >
                <i
                  className="fa fa-paper-plane"
                />
                <FormattedMessage
                  defaultMessage="Send Message"
                  id="user_profile.send.dm"
                  values={Object {}}
                >
                  <span>
                    Send Message
                  </span>
                </FormattedMessage>
              </a>
            </div>
          </div>
        </div>
      </Popover>
    </ProfilePopover>
  </Pluggable>
</IntlProvider>
`;

exports[`plugins/Pluggable should match snapshot with overridden component 1`] = `
<Pluggable
  components={
    Object {
      "ProfilePopover": [Function],
    }
  }
  theme={Object {}}
>
  <ProfilePopoverPlugin
    hasMention={false}
    isRHS={false}
    src="src"
    theme={Object {}}
    user={Object {}}
  >
    <span>
      ProfilePopoverPlugin
    </span>
  </ProfilePopoverPlugin>
</Pluggable>
`;