chore(curriculum): update steps 5–7 in magazine workshop to use specific asserts (#60979)

This commit is contained in:
Yash Urade
2025-06-23 18:08:44 +05:30
committed by GitHub
parent 2aef0099af
commit d5a930803c
3 changed files with 13 additions and 13 deletions

View File

@@ -25,19 +25,19 @@ assert.exists(document.querySelector('div'));
Your `div` element should come after your `header` element.
```js
assert(document.querySelector('div')?.previousElementSibling?.localName === 'header');
assert.equal(document.querySelector('div')?.previousElementSibling?.localName, 'header');
```
Your `div` element should have the `class` set to `author`.
```js
assert(document.querySelector('div')?.className === 'author');
assert.equal(document.querySelector('div')?.className, 'author');
```
You should create two new `p` elements.
```js
assert(document.querySelectorAll('p')?.length === 3);
assert.lengthOf(document.querySelectorAll('p'), 3);
```
Your two new `p` elements should be within your `div` element.
@@ -49,25 +49,25 @@ assert.exists(document.querySelector('div')?.querySelectorAll('p')?.length === 2
Your first new `p` element should have a `class` set to `author-name`.
```js
assert(document.querySelector('div')?.querySelector('p')?.className === 'author-name');
assert.equal(document.querySelector('div')?.querySelector('p')?.className, 'author-name');
```
Your first new `p` element should have the text `By freeCodeCamp`.
```js
assert(document.querySelector('div')?.querySelector('p')?.innerText === 'By freeCodeCamp');
assert.equal(document.querySelector('div')?.querySelector('p')?.innerText, 'By freeCodeCamp');
```
Your second new `p` element should have a `class` set to `publish-date`.
```js
assert(document.querySelector('div')?.querySelectorAll('p')?.[1]?.className === 'publish-date');
assert.equal(document.querySelector('div')?.querySelectorAll('p')?.[1]?.className, 'publish-date');
```
Your second new `p` element should have the text `March 7, 2019`.
```js
assert(document.querySelector('div')?.querySelectorAll('p')?.[1]?.innerText === 'March 7, 2019');
assert.equal(document.querySelector('div')?.querySelectorAll('p')?.[1]?.innerText, 'March 7, 2019');
```
You should create a new `a` element.
@@ -79,25 +79,25 @@ assert.exists(document.querySelector('a'));
Your `a` element should be within your first new `p` element.
```js
assert(document.querySelector('div')?.querySelector('p')?.firstElementChild?.localName === 'a');
assert.equal(document.querySelector('div')?.querySelector('p')?.firstElementChild?.localName, 'a');
```
Your `a` element should have the `href` set to `https://freecodecamp.org`.
```js
assert(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('href') === 'https://freecodecamp.org');
assert.equal(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('href'), 'https://freecodecamp.org');
```
Your `a` element should have the `target` set to `_blank`.
```js
assert(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('target') === '_blank');
assert.equal(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('target'), '_blank');
```
Your `a` element should surround the text `freeCodeCamp`.
```js
assert(document.querySelector('div')?.querySelector('p')?.firstElementChild?.innerText === 'freeCodeCamp');
assert.equal(document.querySelector('div')?.querySelector('p')?.firstElementChild?.innerText, 'freeCodeCamp');
```
# --seed--

View File

@@ -16,7 +16,7 @@ You will remove this later on when you have worked on the CSS.
Your `img` element should have a `width` attribute set to `400`.
```js
assert(document.querySelector('img')?.getAttribute('width') === '400');
assert.equal(document.querySelector('img')?.getAttribute('width'), '400');
```
# --seed--

View File

@@ -14,7 +14,7 @@ The `Referer` HTTP header contains information about the address or URL of a pag
Your `a` element should have the `rel` set to `noreferrer`.
```js
assert(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('rel') === 'noreferrer');
assert.equal(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('rel'), 'noreferrer');
```
# --seed--