mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
2d9f828810
* silence call ringers when local notifications are silenced * more coverage for silencing * explain disabled silence button * lint * increase wait for modal Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
31 lines
939 B
Plaintext
31 lines
939 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<IncomingLegacyCallToast /> renders disabled silenced button when call is forced to silent 1`] = `
|
|
<div
|
|
aria-disabled="true"
|
|
aria-label="Notifications silenced"
|
|
class="mx_AccessibleButton mx_IncomingLegacyCallToast_iconButton mx_IncomingLegacyCallToast_unSilence mx_AccessibleButton_disabled"
|
|
disabled=""
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
`;
|
|
|
|
exports[`<IncomingLegacyCallToast /> renders sound on button when call is silenced 1`] = `
|
|
<div
|
|
aria-label="Sound on"
|
|
class="mx_AccessibleButton mx_IncomingLegacyCallToast_iconButton mx_IncomingLegacyCallToast_unSilence"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
`;
|
|
|
|
exports[`<IncomingLegacyCallToast /> renders when silence button when call is not silenced 1`] = `
|
|
<div
|
|
aria-label="Silence call"
|
|
class="mx_AccessibleButton mx_IncomingLegacyCallToast_iconButton mx_IncomingLegacyCallToast_silence"
|
|
role="button"
|
|
tabindex="0"
|
|
/>
|
|
`;
|