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 6b30e5f commit 6a7071cCopy full SHA for 6a7071c
exercises/02-Separate-Stylesheet/tests.js
@@ -10,7 +10,7 @@ describe("All the styles should be applied", ()=>{
10
const link = document.querySelector("link");
11
const body = document.querySelector("body");
12
13
- test("The body tag should not contains any inline style", ()=>{
+ test("The body tag should not contain any inline style", ()=>{
14
document.querySelector("head").innerHTML = `<style>${css.toString()}</style>`;
15
let emptyBodyInlineStyle={};
16
expect(body.style._values).toEqual(emptyBodyInlineStyle)
0 commit comments