@@ -10,7 +10,7 @@ describe("All the styles should be applied", ()=>{
10
10
const meta = document . querySelector ( "meta" )
11
11
const title = document . querySelector ( 'title' )
12
12
const link = document . querySelector ( 'link' )
13
- test ( "the padding should be '10px'" , ( ) => {
13
+ test ( "The padding should be '10px'" , ( ) => {
14
14
document . querySelector (
15
15
"head"
16
16
@@ -20,7 +20,7 @@ describe("All the styles should be applied", ()=>{
20
20
21
21
expect ( classTagStyles [ "padding" ] ) . toBe ( "10px" ) ;
22
22
} ) ;
23
- test ( "the border radius should be '4px'" , ( ) => {
23
+ test ( "The border radius should be '4px'" , ( ) => {
24
24
document . querySelector (
25
25
"head"
26
26
@@ -29,7 +29,7 @@ describe("All the styles should be applied", ()=>{
29
29
let classTagStyles = window . getComputedStyle ( divTag ) ;
30
30
expect ( classTagStyles [ "border-radius" ] ) . toBe ( "4px" ) ;
31
31
} ) ;
32
- test ( "the underline should be removed" , ( ) => {
32
+ test ( "The underline should be removed" , ( ) => {
33
33
document . querySelector (
34
34
"head"
35
35
@@ -47,7 +47,7 @@ describe("All the styles should be applied", ()=>{
47
47
expect ( cssArray ) . toBe ( ".orange-btn" ) ;
48
48
}
49
49
)
50
- test ( "You should not change the existing head tag elements" , ( ) => {
50
+ test ( "You should not change the existing < head> tag elements" , ( ) => {
51
51
let head = document . querySelector ( 'head' )
52
52
expect ( head ) . toBeTruthy ( )
53
53
0 commit comments