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