ConceptCreator/src/app/side-overviews/script-account-overview/script-account-overview.component.spec.ts
Sebastian Böckelmann 388fcb044c
All checks were successful
E2E Testing / test (push) Successful in 1m22s
Open ScriptAccount from ContextMenu for adding
2024-01-27 13:36:12 +01:00

47 lines
1.6 KiB
TypeScript

import {ComponentFixture, TestBed, waitForAsync} from '@angular/core/testing';
import {TranslateModule} from "@ngx-translate/core";
import {RouterTestingModule} from "@angular/router/testing";
import {ScriptAccountOverviewComponent} from "./script-account-overview.component";
import exp from "node:constants";
import {GameModel} from "../../game-model/GameModel";
describe('ScriptAccountOverview', () => {
let component: ScriptAccountOverviewComponent;
let fixture: ComponentFixture<ScriptAccountOverviewComponent>;
beforeEach(waitForAsync(() => {
void TestBed.configureTestingModule({
declarations: [ScriptAccountOverviewComponent],
imports: [TranslateModule.forRoot(), RouterTestingModule]
}).compileComponents();
fixture = TestBed.createComponent(ScriptAccountOverviewComponent);
component = fixture.componentInstance;
component.gameModel = new GameModel("GameModel")
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
it("Test ScriptAccount Creation", waitForAsync(() => {
component.onCreateNewScriptAccount();
expect(component.gameModel!.scriptAccounts.length).toEqual(1)
component.gameModel!.removeScriptAccount(component.gameModel!.scriptAccounts[0]);
jest.spyOn(component.openScriptAccountEmitter, 'emit');
component.onCreateNewScriptAccount();
fixture.detectChanges();
expect(component.openScriptAccountEmitter.emit).toHaveBeenCalledWith(component.gameModel!.scriptAccounts[0]);
component.onCreateNewScriptAccount();
fixture.detectChanges()
expect(component.openScriptAccountEmitter.emit).toBeCalledTimes(1);
}))
});