11 lines
363 B
TypeScript
11 lines
363 B
TypeScript
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);
|
|
});
|
|
});
|