feat(auth): create login api call with basic test coverage and msw mock

This commit is contained in:
Ilia Mashkov
2026-03-17 10:00:51 +03:00
parent a36922e1c7
commit 9302013632
7 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export const LOGIN_API_ROUTE = "auth/login";
// MOCKS
export const MOCK_EMAIL = "test@test.com";
export const MOCK_PASSWORD = "password";
export const MOCK_TOKEN = "mock.access.token";