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