fix(curriculum): add test for multiple ol elements (#49168)

* Fix(curriculum) - Prevent an oversight in step 27 of the cat app

* Fix(curriculum) - Remember to make the queried nodes iterable
This commit is contained in:
a2937
2023-01-30 02:49:34 -05:00
committed by GitHub
parent 1ae24311ce
commit 5484a0f90b
@@ -57,6 +57,12 @@ assert.deepStrictEqual(
);
```
You should only have one `ol` element.
```js
assert([...document.querySelectorAll('ol')].length == 1);
```
# --seed--
## --seed-contents--