fix: added additional test for altText (#38395)

This commit is contained in:
Randell Dawson
2020-03-23 05:02:34 -07:00
committed by GitHub
parent 2ff5e83195
commit 1f2a93b646

View File

@ -25,6 +25,8 @@ Add code to use the <code>imageLink</code> and <code>altText</code> properties i
tests:
- text: You should use the <code>imageLink</code> property to display the images.
testString: assert(code.match(/val\.imageLink/g));
- text: You should use the <code>altText</code> for the alt attribute values of the images.
testString: assert(code.match(/val\.altText/g));
```