fix(curriculum): assert methods in cat painting step 29 (#60136)

This commit is contained in:
LuluZhuu
2025-05-05 02:24:17 -04:00
committed by GitHub
parent 7b3a19f433
commit ec43a5c4db
@@ -14,13 +14,13 @@ Remove the sharp border of the right ear by setting the `border-top-left-radius`
Your `.cat-right-ear` selector should have a `border-top-left-radius` property set to `90px`. Don't forget to add a semicolon.
```js
assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderTopLeftRadius === '90px')
assert.equal(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderTopLeftRadius, '90px')
```
Your `.cat-right-ear` selector should have a `border-top-right-radius` property set to `10px`. Don't forget to add a semicolon.
```js
assert(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderTopRightRadius === '10px')
assert.equal(new __helpers.CSSHelp(document).getStyle('.cat-right-ear')?.borderTopRightRadius, '10px')
```
# --seed--