Skip to content

Commit e99823b

Browse files
authored
Update tests.js
1 parent d722beb commit e99823b

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,14 +20,14 @@ 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();
2727
});
2828

2929

30-
test("The border-color rule for the 'threeDimension active ' property should match the instruction color", () => {
30+
test("The border-color rule for the 'a.threeDimension:active' selector should match the instruction color", () => {
3131
// get computed styles of any element you like
3232
// let cssArray=document.styleSheets[0].cssRules;
3333
document.querySelector(

0 commit comments

Comments
 (0)