9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { AnalyticsApiClient } from './AnalyticsApiClient';
|
|
|
|
describe('AnalyticsApiClient', () => {
|
|
it('should be defined', () => {
|
|
expect(AnalyticsApiClient).toBeDefined();
|
|
});
|
|
});
|