There was an error while loading. Please reload this page.
1 parent 321c648 commit f350b6cCopy full SHA for f350b6c
exercises/11-Font-Awesome-Icons/tests.js
@@ -31,7 +31,7 @@ describe("All the styles should be applied", ()=>{
31
expect(icons).toBeTruthy();
32
33
icons.forEach(icon=>{
34
- let hasFa = icon.classList.contains("fa-")
+ let hasFa = icon.classList.toString().includes("fa-")
35
expect(hasFa).toBeTruthy();
36
})
37
});
0 commit comments