art-detail.component.spec.ts 626 B

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