fix(curriculum): handle whitespace for step 12 of workshop-cat-photo-app (#61344)

This commit is contained in:
Alex Goldsmith
2025-07-17 12:30:40 -05:00
committed by GitHub
parent 29cd2d227d
commit cb9dac43f8

View File

@@ -26,7 +26,7 @@ assert.strictEqual(document.querySelector('a')?.innerText?.replace(/\s+/g, ' ').
You should have `See more <a href="https://freecatphotoapp.com">cat photos</a> in our gallery` in your code.
```js
assert.match(code, /See more <a href="https:\/\/freecatphotoapp\.com">cat photos<\/a> in our gallery/)
assert.match(code, /See more\s+<a href="https:\/\/freecatphotoapp\.com">cat photos<\/a>\s+in our gallery/);
```
# --seed--