attribute-details.component.spec.ts 659 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { AttributeDetailsComponent } from './attribute-details.component';
  3. describe('AttributeDetailsComponent', () => {
  4. let component: AttributeDetailsComponent;
  5. let fixture: ComponentFixture<AttributeDetailsComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. imports: [AttributeDetailsComponent],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(AttributeDetailsComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });