Skip to content

Commit 3c65aa8

Browse files
committed
Chore: Get Quiz to compile
1 parent 38a7bd9 commit 3c65aa8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lesson_03/quiz/src/quizzes/Dylan_Lafferty_quiz.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
import {
2+
23
AnswerChoice,
34
MultipleChoiceQuizQuestion,
45
QuizQuestion,
56
QuizQuestionProvider,
67
} from 'codedifferently-instructional';
78

9+
810
export class DylanLaffertyQuiz implements QuizQuestionProvider {
911
getProviderName(): string {
1012
return 'dylanlafferty';
1113
}
1214

1315
makeQuizQuestions(): QuizQuestion[] {
16+
1417
return [
1518
DylanLaffertyQuiz.makeQuestion0(),
1619
DylanLaffertyQuiz.makeQuestion1(),
1720
DylanLaffertyQuiz.makeQuestion2(),
1821
];
22+
23+
return [DylanLaffertyQuiz.makeQuestion0(), DylanLaffertyQuiz.makeQuestion0()];
24+
1925
}
2026

2127
private static makeQuestion0(): QuizQuestion {
@@ -54,8 +60,9 @@ export class DylanLaffertyQuiz implements QuizQuestionProvider {
5460
[AnswerChoice.B, 'SSD'],
5561
[AnswerChoice.C, 'GPU'],
5662
[AnswerChoice.D, 'RAM'],
57-
]),
5863
AnswerChoice.UNANSWERED,
5964
);
6065
}
66+
6167
}
68+

0 commit comments

Comments
 (0)