1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-07 21:23:00 +03:00

Enable Jest and Percy snapshots for PreferencesUserSettingsTab (#10701)

Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
This commit is contained in:
Suguru Hirahara
2023-04-27 18:11:48 +00:00
committed by GitHub
parent d1a1506572
commit 326e217d3f
4 changed files with 1102 additions and 1 deletions

View File

@@ -33,6 +33,11 @@ describe("PreferencesUserSettingsTab", () => {
return render(<PreferencesUserSettingsTab closeSettingsFn={() => {}} />);
};
it("should render", () => {
const { asFragment } = renderTab();
expect(asFragment()).toMatchSnapshot();
});
describe("send read receipts", () => {
beforeEach(() => {
stubClient();