Skip to content

Commit 6a7071c

Browse files
authored
Update tests.js
1 parent 6b30e5f commit 6a7071c

File tree

1 file changed

+1
-1
lines changed
  • exercises/02-Separate-Stylesheet

1 file changed

+1
-1
lines changed

exercises/02-Separate-Stylesheet/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe("All the styles should be applied", ()=>{
1010
const link = document.querySelector("link");
1111
const body = document.querySelector("body");
1212

13-
test("The body tag should not contains any inline style", ()=>{
13+
test("The body tag should not contain any inline style", ()=>{
1414
document.querySelector("head").innerHTML = `<style>${css.toString()}</style>`;
1515
let emptyBodyInlineStyle={};
1616
expect(body.style._values).toEqual(emptyBodyInlineStyle)

0 commit comments

Comments
 (0)