ConceptCreator/src/app/editor/character-editor/character-editor.component.spec.ts
Sebastian Böckelmann 91ee3850d2
All checks were successful
E2E Testing / test (push) Successful in 1m37s
Open Character Editor
2024-03-22 09:35:13 +01:00

24 lines
660 B
TypeScript

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