@@ -39,7 +39,7 @@ export class Lesson2 {
39
39
[ AnswerChoice . C , "To delete unnecessary files" ] ,
40
40
[ AnswerChoice . D , "To run code more efficiently" ] ,
41
41
] ) ,
42
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
42
+ AnswerChoice . B
43
43
) ;
44
44
}
45
45
@@ -48,15 +48,12 @@ export class Lesson2 {
48
48
1 ,
49
49
"What is a fork in Git?" ,
50
50
new Map ( [
51
- [
52
- AnswerChoice . A ,
53
- "A duplicate copy of a repository that you own and modify" ,
54
- ] ,
51
+ [ AnswerChoice . A , "A duplicate copy of a repository that you own and modify" ] ,
55
52
[ AnswerChoice . B , "A temporary backup of the code" ] ,
56
53
[ AnswerChoice . C , "A tool for merging branches" ] ,
57
54
[ AnswerChoice . D , "A way to delete a repository" ] ,
58
55
] ) ,
59
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
56
+ AnswerChoice . A
60
57
) ;
61
58
}
62
59
@@ -70,7 +67,7 @@ export class Lesson2 {
70
67
[ AnswerChoice . C , "Push changes to the server" ] ,
71
68
[ AnswerChoice . D , "Write code directly in GitHub" ] ,
72
69
] ) ,
73
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
70
+ AnswerChoice . D
74
71
) ;
75
72
}
76
73
@@ -84,7 +81,7 @@ export class Lesson2 {
84
81
[ AnswerChoice . C , "git branch" ] ,
85
82
[ AnswerChoice . D , "git pull" ] ,
86
83
] ) ,
87
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
84
+ AnswerChoice . B
88
85
) ;
89
86
}
90
87
@@ -98,7 +95,7 @@ export class Lesson2 {
98
95
[ AnswerChoice . C , "NetBeans" ] ,
99
96
[ AnswerChoice . D , "VS Code" ] ,
100
97
] ) ,
101
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
98
+ AnswerChoice . D
102
99
) ;
103
100
}
104
101
@@ -112,7 +109,7 @@ export class Lesson2 {
112
109
[ AnswerChoice . C , "Dev Containers" ] ,
113
110
[ AnswerChoice . D , "Source Control" ] ,
114
111
] ) ,
115
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
112
+ AnswerChoice . C
116
113
) ;
117
114
}
118
115
@@ -126,7 +123,7 @@ export class Lesson2 {
126
123
[ AnswerChoice . C , "Playing music" ] ,
127
124
[ AnswerChoice . D , "Managing source control" ] ,
128
125
] ) ,
129
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
126
+ AnswerChoice . C
130
127
) ;
131
128
}
132
129
@@ -140,7 +137,7 @@ export class Lesson2 {
140
137
[ AnswerChoice . C , "cd" ] ,
141
138
[ AnswerChoice . D , "mkdir" ] ,
142
139
] ) ,
143
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
140
+ AnswerChoice . B
144
141
) ;
145
142
}
146
143
@@ -154,7 +151,7 @@ export class Lesson2 {
154
151
[ AnswerChoice . C , "cd" ] ,
155
152
[ AnswerChoice . D , "mkdir" ] ,
156
153
] ) ,
157
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
154
+ AnswerChoice . C
158
155
) ;
159
156
}
160
157
@@ -168,7 +165,7 @@ export class Lesson2 {
168
165
[ AnswerChoice . C , "Remove a file or directory" ] ,
169
166
[ AnswerChoice . D , "Copy a file or directory" ] ,
170
167
] ) ,
171
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
168
+ AnswerChoice . A
172
169
) ;
173
170
}
174
171
@@ -182,11 +179,9 @@ export class Lesson2 {
182
179
[ AnswerChoice . C , "⌘ + Q" ] ,
183
180
[ AnswerChoice . D , '⌘ + S, then type "terminal"' ] ,
184
181
] ) ,
185
- AnswerChoice . UNANSWERED , // Replace `UNANSWERED` with the correct answer.
182
+ AnswerChoice . B
186
183
) ;
187
184
}
188
185
}
189
186
190
- if ( ! process . env . JEST_WORKER_ID ) {
191
- new Lesson2 ( ) . run ( ) ;
192
- }
187
+ if ( ! process . en
0 commit comments