Fix minature => miniature spelling (#2727)

This commit is contained in:
Hugh Nimmo-Smith
2024-11-06 15:54:58 +00:00
committed by GitHub
parent a041a7bf7e
commit bfffddfa92
4 changed files with 8 additions and 8 deletions

View File

@@ -33,10 +33,10 @@ describe("RaisedHandIndicator", () => {
);
expect(container.firstChild).toMatchSnapshot();
});
test("renders a smaller indicator when minature is specified", () => {
test("renders a smaller indicator when miniature is specified", () => {
const dateTime = new Date();
const { container } = render(
<RaisedHandIndicator raisedHandTime={dateTime} minature showTimer />,
<RaisedHandIndicator raisedHandTime={dateTime} miniature showTimer />,
);
expect(container.firstChild).toMatchSnapshot();
});