Replace manual mock with jest.mock

pull/21833/head
Andy Balaam 2021-10-19 15:45:11 +01:00
parent d70a706c15
commit 2582f6df23
1 changed files with 9 additions and 3 deletions

View File

@ -23,9 +23,15 @@ import _FontScalingPanel from '../../../../src/components/views/settings/FontSca
const FontScalingPanel = TestUtils.wrapInMatrixClientContext(_FontScalingPanel); const FontScalingPanel = TestUtils.wrapInMatrixClientContext(_FontScalingPanel);
import * as randomstring from "matrix-js-sdk/src/randomstring"; // Fake random strings to give a predictable snapshot
// @ts-expect-error: override random function to make results predictable jest.mock(
randomstring.randomString = () => "abdefghi"; 'matrix-js-sdk/src/randomstring',
() => {
return {
randomString: () => "abdefghi",
};
},
);
describe('FontScalingPanel', () => { describe('FontScalingPanel', () => {
it('renders the font scaling UI', () => { it('renders the font scaling UI', () => {