123456789101112131415161718192021 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { IconComponent } from './icon.component';
- describe('IconComponent', () => {
- let component: IconComponent;
- let fixture: ComponentFixture<IconComponent>;
- beforeEach(() => {
- TestBed.configureTestingModule({
- declarations: [IconComponent]
- });
- fixture = TestBed.createComponent(IconComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|