Fix profile.spec.tsx typo

This commit is contained in:
Hsüan
2025-06-04 15:18:46 -07:00
committed by GitHub
parent 22d21df22b
commit 58acca4dcb
@@ -164,7 +164,7 @@ describe('<Profile />', () => {
expect(container.querySelector('profile-footer')).not.toBeInTheDocument();
});
it('load more button should dissapear if there no more comments to fetch', async () => {
it('load more button should disappear if there no more comments to fetch', async () => {
jest
.spyOn(api, 'getUserComments')
.mockImplementation(async () => ({ comments: new Array(10).fill(commentStub), count: 15 }));