fix issues
This commit is contained in:
10
apps/website/lib/infrastructure/ErrorReplay.test.ts
Normal file
10
apps/website/lib/infrastructure/ErrorReplay.test.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user