| 12345678910111213141516171819202122 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { AttributeDetailsComponent } from './attribute-details.component';
- describe('AttributeDetailsComponent', () => {
- let component: AttributeDetailsComponent;
- let fixture: ComponentFixture<AttributeDetailsComponent>;
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- imports: [AttributeDetailsComponent],
- }).compileComponents();
- fixture = TestBed.createComponent(AttributeDetailsComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|