10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { parseApiError, getErrorSeverity } from './errorUtils';
|
|
|
|
describe('errorUtils', () => {
|
|
it('should be defined', () => {
|
|
expect(parseApiError).toBeDefined();
|
|
expect(getErrorSeverity).toBeDefined();
|
|
});
|
|
});
|