fix(curriculum): greeting-card test typo (#57714)

This commit is contained in:
Shaun Hamilton
2024-12-23 13:36:05 +02:00
committed by GitHub
parent f048a7f377
commit d9f9eeba57

View File

@@ -24,7 +24,7 @@ You should have a `.card-links a` selector.
assert.exists(new __helpers.CSSHelp(document).getStyle(".card-links a"));
```
The `.card-links a` selector should have a `text-decoration` property set to `note`.
The `.card-links a` selector should have a `text-decoration` property set to `none`.
```js
assert.strictEqual(new __helpers.CSSHelp(document).getStyle(".card-links a")?.getPropertyValue("text-decoration"), "none");