Skip to content

Commit b09e86c

Browse files
authored
Update tests.js
1 parent e78069d commit b09e86c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/11-Font-Awesome-Icons/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("All the styles should be applied", ()=>{
1919
test("At least 3 i tags should exist", ()=>{
2020
expect(document.querySelectorAll("i").length).toBe(3);
2121
});
22-
test("There should be some text on the li tags", ()=>{
22+
test("The i tags should be inside the li tags", ()=>{
2323
expect(document.querySelector("li")).toBeTruthy();
2424
const li = document.querySelectorAll("li");
2525
for (let i = 0; i < li.length; i++) {

0 commit comments

Comments
 (0)