import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TechnologiesComponent } from './technologies.component'; describe('TechnologiesComponent', () => { let component: TechnologiesComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ TechnologiesComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(TechnologiesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });