Skip to content

Commit

Permalink
test(Multiple Choice): Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreykwan committed Oct 13, 2023
1 parent 0bf6082 commit 4f78291
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';
import { MultipleChoiceAuthoringHarness } from './multiple-choice-authoring.harness';
import { MatCheckboxModule } from '@angular/material/checkbox';
import { TeacherNodeService } from '../../../services/teacherNodeService';

let component: MultipleChoiceAuthoring;
let fixture: ComponentFixture<MultipleChoiceAuthoring>;
Expand All @@ -37,7 +38,7 @@ describe('MultipleChoiceAuthoringComponent', () => {
MatRadioModule,
StudentTeacherCommonServicesModule
],
providers: [ProjectAssetService, TeacherProjectService]
providers: [ProjectAssetService, TeacherNodeService, TeacherProjectService]
});
})
);
Expand Down

0 comments on commit 4f78291

Please sign in to comment.