diff --git a/tests/reset-password.test.tsx b/tests/reset-password.test.tsx
new file mode 100644
index 00000000000..609eee427e4
--- /dev/null
+++ b/tests/reset-password.test.tsx
@@ -0,0 +1,59 @@
+import React from 'react'
+import { render, fireEvent, waitFor } from '@testing-library/react'
+import ResetPassword from 'src/pages/reset-password/index.tsx'
+import apiManager from 'common/websocket'
+
+jest.mock('common/websocket', () => ({
+ augmentedSend: jest.fn(),
+}))
+
+describe('ResetPassword', () => {
+ beforeEach(() => {
+ jest.clearAllMocks()
+ })
+
+ it('renders the ResetPassword component', () => {
+ render()
+ // Add assertions to check if the component is rendered correctly
+ })
+
+ it('validates the email input field', () => {
+ render()
+ // Simulate user interactions to test input validation
+ // Add assertions to check if the validation works as expected
+ })
+
+ it('submits the form and makes the API call', async () => {
+ render()
+ // Simulate user interactions to fill in the form
+ fireEvent.click(submitButton)
+ await waitFor(() => {
+ // Add assertions to check if the API call is made with the correct parameters
+ // Add assertions to check if the form is reset after successful submission
+ })
+ })
+
+ it('handles API errors and displays error messages', async () => {
+ apiManager.augmentedSend.mockRejectedValueOnce({ error: { message: 'API error' } })
+ render()
+ // Simulate user interactions to fill in the form and submit
+ await waitFor(() => {
+ // Add assertions to check if the error message is displayed correctly
+ })
+ })
+
+ it('handles successful API response', async () => {
+ apiManager.augmentedSend.mockResolvedValueOnce({ success: true })
+ render()
+ // Simulate user interactions to fill in the form and submit
+ await waitFor(() => {
+ // Add assertions to check if the success message is displayed correctly
+ })
+ })
+
+ it('handles button click events', () => {
+ render()
+ // Simulate user interactions to click buttons
+ // Add assertions to check if the corresponding actions are triggered
+ })
+})