mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-24 09:28:21 +08:00
b084ff2313
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
77 lines
1.4 KiB
Plaintext
77 lines
1.4 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`VerificationRequestToast should render a cross-user verification 1`] = `
|
|
<div>
|
|
<div>
|
|
<div
|
|
class="mx_Toast_description"
|
|
>
|
|
@alice:domain (@other:user)
|
|
</div>
|
|
<div
|
|
aria-live="off"
|
|
class="mx_Toast_buttons"
|
|
>
|
|
<button
|
|
class="_button_i91xf_17"
|
|
data-kind="secondary"
|
|
data-size="sm"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Ignore
|
|
</button>
|
|
<button
|
|
class="_button_i91xf_17"
|
|
data-kind="primary"
|
|
data-size="sm"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Verify Session
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`VerificationRequestToast should render a self-verification 1`] = `
|
|
<div>
|
|
<div>
|
|
<div
|
|
class="mx_Toast_description"
|
|
>
|
|
my other device
|
|
<div
|
|
class="mx_Toast_detail"
|
|
>
|
|
other_device from 1.1.1.1
|
|
</div>
|
|
</div>
|
|
<div
|
|
aria-live="off"
|
|
class="mx_Toast_buttons"
|
|
>
|
|
<button
|
|
class="_button_i91xf_17"
|
|
data-kind="secondary"
|
|
data-size="sm"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Ignore
|
|
</button>
|
|
<button
|
|
class="_button_i91xf_17"
|
|
data-kind="primary"
|
|
data-size="sm"
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
Verify Session
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|