ConceptCreator/src/app/side-overviews/character-overview/character-overview.component.spec.ts
Sebastian Böckelmann 13ea574fa3
All checks were successful
E2E Testing / test (push) Successful in 1m41s
Introduce Characters and visualize them in Overview Component
2024-03-22 09:25:58 +01:00

24 lines
674 B
TypeScript

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