mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import { EventPipe } from './event.pipe';
|
|
|
|
describe('EventPipe', () => {
|
|
it('create an instance', () => {
|
|
const pipe = new EventPipe();
|
|
expect(pipe).toBeTruthy();
|
|
});
|
|
});
|