ConceptCreator/src/app/editor/gamesystem-editor/gamesystem-editor.component.spec.ts
Sebastian Böckelmann 9462de256b
All checks were successful
E2E Testing / test (push) Successful in 1m27s
Visualize SimpleStates of Simplegamesystems
2024-02-10 11:03:26 +01:00

24 lines
667 B
TypeScript

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