* Update jest to v30 * Update jest to v30 * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Apply jsdom patch Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
|
|
exports[`<SettingsDropdown /> should render a disabled setting 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="mx_SettingsDropdown"
|
|
>
|
|
<label
|
|
class="mx_SettingsDropdown_label"
|
|
for="_r_0_"
|
|
>
|
|
<span
|
|
class="mx_SettingsDropdown_labelText"
|
|
>
|
|
Open %(brand)s when you log in to your computer
|
|
</span>
|
|
</label>
|
|
<div
|
|
class="mx_Dropdown mx_Dropdown_disabled"
|
|
>
|
|
<div
|
|
aria-describedby="_r_0__value"
|
|
aria-disabled="true"
|
|
aria-expanded="false"
|
|
aria-haspopup="listbox"
|
|
aria-label="Open %(brand)s when you log in to your computer"
|
|
aria-owns="_r_0__input"
|
|
class="mx_AccessibleButton mx_Dropdown_input mx_no_textinput mx_AccessibleButton_disabled"
|
|
disabled=""
|
|
role="button"
|
|
tabindex="0"
|
|
>
|
|
<div
|
|
class="mx_Dropdown_option"
|
|
id="_r_0__value"
|
|
>
|
|
<div>
|
|
No
|
|
</div>
|
|
</div>
|
|
<span
|
|
class="mx_Dropdown_arrow"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|