Skip to content
Snippets Groups Projects
Commit 59b0b18a authored by paf's avatar paf
Browse files

fixes the tests

parent 91587399
No related branches found
No related tags found
No related merge requests found
......@@ -15,14 +15,19 @@ import { CustomtextPipe } from 'iqb-components';
import { Pipe } from '@angular/core';
import { GroupMonitorComponent } from './group-monitor.component';
import {
CheckingOptions,
CheckingOptions, CommandResponse,
GroupData, TestSession,
TestSessionData, TestSessionSetStats
} from './group-monitor.interfaces';
import { BackendService } from './backend.service';
import { TestViewComponent } from './test-view/test-view.component';
import { GroupMonitorService } from './group-monitor.service';
import { unitTestSessionsStats, unitTestCheckedStats, unitTestExampleSessions } from './test-data.spec';
import {
unitTestSessionsStats,
unitTestCheckedStats,
unitTestExampleSessions,
unitTestCommandResponse
} from './test-data.spec';
class MockMatDialog {
open(): { afterClosed: () => Observable<{ action: boolean }> } {
......@@ -56,6 +61,7 @@ class MockGroupMonitorService {
sessionsStats$ = new BehaviorSubject<TestSessionSetStats>(unitTestSessionsStats);
checkedStats$ = new BehaviorSubject<TestSessionSetStats>(unitTestCheckedStats);
sessions$ = new BehaviorSubject<TestSession[]>(unitTestExampleSessions);
commandResponses$ = new BehaviorSubject<CommandResponse>(unitTestCommandResponse);
sessions = unitTestExampleSessions;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
connect = (_: string) => {};
......
import {
Booklet, TestSession, TestSessionData, TestSessionSetStats
Booklet, CommandResponse, TestSession, TestSessionData, TestSessionSetStats
} from './group-monitor.interfaces';
import { TestSessionService } from './test-session.service';
......@@ -195,3 +195,8 @@ export const unitTestCheckedStats: TestSessionSetStats = {
paused: 0,
locked: 0
};
export const unitTestCommandResponse: CommandResponse = {
commandType: 'any',
testIds: [0]
};
......@@ -3,7 +3,7 @@ import { MatIconModule } from '@angular/material/icon';
import { SimpleChange } from '@angular/core';
import { AlertComponent } from './alert.component';
fdescribe('AlertComponent', () => {
describe('AlertComponent', () => {
let component: AlertComponent;
let fixture: ComponentFixture<AlertComponent>;
let returnedTexts: string[] = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment