11 lines
391 B
TypeScript
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();
|
|
});
|
|
});
|