fix(curriculum): allow multiline label in calorie counter step 47 (#67295)

Signed-off-by: Deepak.S <deepak.s.workdesk@gmail.com>
Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com>
This commit is contained in:
Deepak.S
2026-05-09 20:11:27 +05:30
committed by GitHub
parent 798e409dd5
commit 939df8c8c9
@@ -14,7 +14,7 @@ Inside your template literal, create a `label` element and give it the text `Ent
You should have a `label` element inside your template literal.
```js
assert.match(code, /HTMLString\s*=\s*`\n\s*<label>.*<\/label>/);
assert.match(code, /HTMLString\s*=\s*`\s*<label>[\s\S]*?<\/label>/);
```
Your `label` element should have the text `Entry ${entryNumber} Name`.