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