27 lines
762 B
TypeScript
27 lines
762 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
import { IconContainerComponent } from './icon-container.component';
|
|
|
|
describe('IconContainerComponent', () => {
|
|
let component: IconContainerComponent;
|
|
let fixture: ComponentFixture<IconContainerComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [E2EImportsModule]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(IconContainerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|