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

11 lines
391 B
TypeScript

import { describe, it, expect } from 'vitest';
import { GracefulService, responseCache, withGracefulDegradation } from './GracefulDegradation';
describe('GracefulDegradation', () => {
it('should export graceful degradation utilities', () => {
expect(withGracefulDegradation).toBeDefined();
expect(responseCache).toBeDefined();
expect(GracefulService).toBeDefined();
});
});