fix: failing challenge test because of commented out code (#45492)

id: 587d7b87367417b2b2512b43
title: Use Arrow Functions to Write Concise Anonymous Functions
forumTopicId: 301211
dashedName: use-arrow-functions-to-write-concise-anonymous-functions

User code tests fail when seed code is left and commented out.
This commit is contained in:
Radi Totev
2022-03-29 16:36:13 +01:00
committed by GitHub
parent 4529d8638a
commit 0a3690572c

View File

@ -45,13 +45,13 @@ Rewrite the function assigned to the variable `magic` which returns a `new Date(
You should replace the `var` keyword.
```js
(getUserInput) => assert(!getUserInput('index').match(/var/g));
assert.notMatch(code, /var/g)
```
`magic` should be a constant variable (by using `const`).
```js
(getUserInput) => assert(getUserInput('index').match(/const\s+magic/g));
assert.match(code, /const\s+magic/g)
```
`magic` should be a `function`.
@ -69,7 +69,7 @@ assert(magic().setHours(0, 0, 0, 0) === new Date().setHours(0, 0, 0, 0));
The `function` keyword should not be used.
```js
(getUserInput) => assert(!getUserInput('index').match(/function/g));
assert.notMatch(code, /function/g)
```
# --seed--