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 ba2b37d commit 5aa8916Copy full SHA for 5aa8916
exercises/07-Very-Specific-Rules/tests.js
@@ -70,7 +70,7 @@ describe("All the styles should be applied", ()=>{
70
71
}
72
73
- } expect(background && background.toLowerCase() === "yellow" || backgroundColor.toLowerCase() === "yellow").toBeTruthy();
+ } expect((background && background.toLowerCase() === "yellow") || (backgroundColor && backgroundColor.toLowerCase() === "yellow")).toBeTruthy();
74
})
75
76
test("Write all your rules above the existing code", ()=>{
0 commit comments