ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
22 lines (17 loc) • 559 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { TagComponent } from './tag.component';
describe('TagComponent', () => {
let component: TagComponent;
let fixture: ComponentFixture<TagComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [TagComponent]
});
fixture = TestBed.createComponent(TagComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});