Remove error mocking

This commit is contained in:
shamoon 2025-03-30 20:07:00 -07:00
parent fa8ebc56ef
commit 1c6820428d
No known key found for this signature in database

View File

@ -4,10 +4,6 @@ export function __setEndpointMockData(endpoint, response) {
mockResponses[endpoint] = response;
}
export function __setEndpointMockError(endpoint, error) {
mockResponses[endpoint] = error;
}
export function __clearMocks() {
mockResponses = {};
}