Files
kontor/kontor-angular/src/app/comic/artist/artist-detail/artist-detail.component.spec.ts
T
2025-09-15 17:08:42 +02:00

24 lines
635 B
TypeScript

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