feat: add the preferences/account page (#999)

This commit is contained in:
Bruno Quaresma
2022-04-15 14:17:50 -03:00
committed by GitHub
parent c853eb3350
commit 88e30bec55
15 changed files with 480 additions and 25 deletions

View File

@ -9,7 +9,10 @@ beforeAll(() =>
// Reset any request handlers that we may add during the tests,
// so they don't affect other tests.
afterEach(() => server.resetHandlers())
afterEach(() => {
server.resetHandlers()
jest.clearAllMocks()
})
// Clean up after the tests are finished.
afterAll(() => server.close())