You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
666B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { SecuritySystemDetailsComponent } from './security-system-details.component';
  3. describe('SecuritySystemDetailsComponent', () => {
  4. let component: SecuritySystemDetailsComponent;
  5. let fixture: ComponentFixture<SecuritySystemDetailsComponent>;
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. declarations: [SecuritySystemDetailsComponent]
  9. });
  10. fixture = TestBed.createComponent(SecuritySystemDetailsComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });