Skip to content

Commit 1a03a65

Browse files
authored
Update tests.js
1 parent 963ebaa commit 1a03a65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/09-Anchor-Styles/tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe("All the styles should be applied", () => {
2020
expect(cssArray).toBe(".threeDimension");
2121
})
2222

23-
test("The 'a' tag in the index.html should not be deleted", () => {
23+
test("The <a> tag in the index.html should not be deleted", () => {
2424
// we can read from the source code
2525
// console.log(html.toString());
2626
expect(html.toString().indexOf(`<a`) > -1).toBeTruthy();
@@ -71,7 +71,7 @@ describe("All the styles should be applied", () => {
7171

7272
});
7373

74-
test("You should not change the existing head tag elements", () => {
74+
test("You should not change the existing <head> tag elements", () => {
7575
let head = document.querySelector('head')
7676
expect(head).toBeTruthy()
7777

0 commit comments

Comments
 (0)