Files

47 lines
1.6 KiB
TypeScript

/**
* Tests for API client configuration
*
* Tests ensure the client module loads and is configured correctly.
* Note: Interceptor behavior testing requires actual HTTP calls, which is
* better suited for integration/E2E tests. These unit tests verify setup.
*/
import { apiClient } from '@/lib/api/client';
import config from '@/config/app.config';
describe('API Client Configuration', () => {
it('should export apiClient instance', () => {
expect(apiClient).toBeDefined();
expect(apiClient.instance).toBeDefined();
});
it('should have correct baseURL', () => {
// Generated client already has /api/v1 in baseURL
expect(apiClient.instance.defaults.baseURL).toContain(config.api.url);
});
it('should have correct timeout', () => {
expect(apiClient.instance.defaults.timeout).toBe(config.api.timeout);
});
it('should have correct default headers', () => {
expect(apiClient.instance.defaults.headers['Content-Type']).toBe('application/json');
});
it('should have request interceptors registered', () => {
// Interceptors are registered but not exposed in type definitions
// We verify by checking the interceptors object exists
expect(apiClient.instance.interceptors.request).toBeDefined();
});
it('should have response interceptors registered', () => {
// Interceptors are registered but not exposed in type definitions
// We verify by checking the interceptors object exists
expect(apiClient.instance.interceptors.response).toBeDefined();
});
it('should have setConfig method', () => {
expect(typeof apiClient.setConfig).toBe('function');
});
});