2022-08-09 16:14:30 +08:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
|
|
|
exports[`<SettingsSubsection /> renders with plain text description 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection"
|
|
|
|
>
|
2022-10-12 02:12:02 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsectionHeading"
|
2022-08-09 16:14:30 +08:00
|
|
|
>
|
2022-10-12 02:12:02 +08:00
|
|
|
<h3
|
2023-06-29 18:30:25 +08:00
|
|
|
class="mx_Heading_h4 mx_SettingsSubsectionHeading_heading"
|
2022-10-12 02:12:02 +08:00
|
|
|
>
|
|
|
|
Test
|
|
|
|
</h3>
|
|
|
|
</div>
|
2022-08-09 16:14:30 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_description"
|
|
|
|
>
|
2023-05-04 06:35:43 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_text"
|
|
|
|
>
|
|
|
|
This describes the subsection
|
|
|
|
</div>
|
2022-08-09 16:14:30 +08:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_content"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
test settings content
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2022-10-12 02:12:02 +08:00
|
|
|
exports[`<SettingsSubsection /> renders with plain text heading 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsectionHeading"
|
|
|
|
>
|
|
|
|
<h3
|
2023-06-29 18:30:25 +08:00
|
|
|
class="mx_Heading_h4 mx_SettingsSubsectionHeading_heading"
|
2022-10-12 02:12:02 +08:00
|
|
|
>
|
|
|
|
Test
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_content"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
test settings content
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2022-08-09 16:14:30 +08:00
|
|
|
exports[`<SettingsSubsection /> renders with react element description 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection"
|
|
|
|
>
|
2022-10-12 02:12:02 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsectionHeading"
|
2022-08-09 16:14:30 +08:00
|
|
|
>
|
2022-10-12 02:12:02 +08:00
|
|
|
<h3
|
2023-06-29 18:30:25 +08:00
|
|
|
class="mx_Heading_h4 mx_SettingsSubsectionHeading_heading"
|
2022-10-12 02:12:02 +08:00
|
|
|
>
|
|
|
|
Test
|
|
|
|
</h3>
|
|
|
|
</div>
|
2022-08-09 16:14:30 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_description"
|
|
|
|
>
|
2023-05-04 06:35:43 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_text"
|
|
|
|
>
|
|
|
|
<p>
|
|
|
|
This describes the section
|
|
|
|
<a
|
|
|
|
href="/#"
|
|
|
|
>
|
|
|
|
link
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-08-09 16:14:30 +08:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_content"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
test settings content
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2022-10-12 02:12:02 +08:00
|
|
|
exports[`<SettingsSubsection /> renders with react element heading 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection"
|
|
|
|
>
|
|
|
|
<h3>
|
|
|
|
This is the heading
|
|
|
|
</h3>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_content"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
test settings content
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2022-08-09 16:14:30 +08:00
|
|
|
exports[`<SettingsSubsection /> renders without description 1`] = `
|
|
|
|
<div>
|
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection"
|
|
|
|
>
|
2022-10-12 02:12:02 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsectionHeading"
|
2022-08-09 16:14:30 +08:00
|
|
|
>
|
2022-10-12 02:12:02 +08:00
|
|
|
<h3
|
2023-06-29 18:30:25 +08:00
|
|
|
class="mx_Heading_h4 mx_SettingsSubsectionHeading_heading"
|
2022-10-12 02:12:02 +08:00
|
|
|
>
|
|
|
|
Test
|
|
|
|
</h3>
|
|
|
|
</div>
|
2022-08-09 16:14:30 +08:00
|
|
|
<div
|
|
|
|
class="mx_SettingsSubsection_content"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
test settings content
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|