fix(curriculum): use assert.lengthOf method in storytelling app workshop (#59860)

This commit is contained in:
Clarence
2025-04-21 21:20:33 +01:00
committed by GitHub
parent a026d95e3a
commit d1ce612865
@@ -14,7 +14,7 @@ Next, you will start working on the `JavaScript`. For that, begin by linking the
You should create a `script` element.
```js
assert(document.querySelectorAll('script').length === 3);
assert.lengthOf(document.querySelectorAll('script'), 3);
```
Your `script` element should have an `src` attribute set to `script.js`.