Files
gridpilot.gg/apps/website/lib/api/protests/ProtestsApiClient.test.ts
2026-01-01 22:46:59 +01:00

9 lines
232 B
TypeScript

import { describe, it, expect } from 'vitest';
import { ProtestsApiClient } from './ProtestsApiClient';
describe('ProtestsApiClient', () => {
it('should be defined', () => {
expect(ProtestsApiClient).toBeDefined();
});
});