We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32248ab commit c4db72aCopy full SHA for c4db72a
exercises/03-Bootstrap-Grid/tests.js
@@ -59,8 +59,8 @@ describe("All the tests should pass", function () {
59
60
let div = thirdRow.querySelector("div");
61
expect(div).toBeTruthy();
62
- expect(div.classList.contains("col-12") || div.classList.contains("col"));
63
- expect(div.classList.contains("bg-danger"));
+ expect(div.classList.contains("col-12") || div.classList.contains("col")).toBeTruthy();
+ expect(div.classList.contains("bg-danger")).toBeTruthy();
64
expect(div.innerHTML.toString()).toBeTruthy();
65
});
66
0 commit comments