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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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();