Files
wgenerator/src/app/modules/shows/show/show.component.spec.ts
2025-01-05 10:29:29 +01:00

25 lines
623 B
TypeScript

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