Files
jambotron/jambotron-ui/src/app/_shared/event-bus.service.spec.ts
T
2025-06-14 19:41:08 +03:00

17 lines
368 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { EventBusService } from './event-bus.service';
describe('EventBusService', () => {
let service: EventBusService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(EventBusService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});