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