import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { ArtDetailComponent } from './art-detail.component'; describe('ArtDetailComponent', () => { let component: ArtDetailComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [ArtDetailComponent], }).compileComponents(); fixture = TestBed.createComponent(ArtDetailComponent); component = fixture.componentInstance; fixture.detectChanges(); })); it('should create', () => { expect(component).toBeTruthy(); }); });