Files
gridpilot.gg/apps/website/lib/infrastructure/GlobalErrorHandler.test.ts
2026-01-01 22:46:59 +01:00

9 lines
236 B
TypeScript

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