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