Skip to content

Commit 715d2a6

Browse files
author
AmiyahJo
committed
modified test module and yami file
1 parent f95ade6 commit 715d2a6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ quiz:
66
anotherone:
77
- $2y$10$8eHSzy3aCu4Ry3LzO9nWCeGpofSxsNVbnF.wCfn3ZADwQ6MEtN/KK
88
- $2y$10$dGB0CGv7.XQC5OqfyY6iXOiJsdVyxU3ve5YE0gt4m2I8P8H13lNXa
9+
quiz:
10+
answers:
11+
amiyahjones:
12+
- $2y$10$rqF3De./7y9hMlwTTe42D.PF2Blsi8tfkJFshnzLivEmbd488ahnO
13+
- $2y$10$ucIq02aHBFaB6ilRS3DxPOHFsDH0g95f1h5jghKh8j2v3Mvxvf67.
14+
- $2y$10$VmJTbXxCunAZJoWwcHmnSesMIU/3oxd7LK2TS/zZLfwg281ERi0JW

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
33
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
4+
import { AmiyahJonesQuiz } from './amiyah_jones_quiz.js';
45

56
export const Quizzes = Symbol.for('Quizzes');
67

78
// Add your quiz provider here.
8-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz];
9+
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, AmiyahJonesQuiz];
910

1011
@Module({
1112
providers: [

0 commit comments

Comments
 (0)