fix(curriculum): update tests, remove self-closing (#55545)

This commit is contained in:
Lasse Jørgensen
2024-08-06 00:46:07 +02:00
committed by GitHub
parent c377346d48
commit c5bfb6297f

View File

@@ -7,48 +7,59 @@ dashedName: step-5
# --description--
Nest a self-closing `link` element within the `head` element. Give it a `rel` attribute with value of `stylesheet` and an `href` attribute with a value of `styles.css`.
Nest a `link` element within the `head` element. Give it a `rel` attribute with a value of `stylesheet` and an `href` attribute with a value of `styles.css`.
# --hints--
Your code should have a `link` element.
```js
assert.exists(document.querySelector('link'));
assert.isNotNull(document.querySelector('link'));
```
You should not change your existing `head` tags. Make sure you did not delete the closing tag.
```js
const heads = document.querySelectorAll('head');
assert.equal(heads?.length, 1);
assert.strictEqual(heads?.length, 1);
```
You should have one self-closing `link` element.
You should have one `link` element.
```js
assert(document.querySelectorAll('link').length === 1);
assert.strictEqual(document.querySelectorAll('link')?.length, 1);
```
Your `link` element should be within your `head` element.
Your `link` element should be a void element, it should not have an end tag `</link>`.
```js
assert.exists(document.querySelector('head > link'));
assert.notMatch(code, /<\/link>/);
```
Your `link` element should be inside your `head` element.
```js
const headContentRegex = /(?<=<head\s*>)(?:.|\s*)*?(?=<\/head\s*>)/;
const headElementContent = code.match(headContentRegex);
const headElement = document.createElement("head");
headElement.innerHTML = headElementContent;
assert.isNotNull(headElement.querySelector('link'));
```
Your `link` element should have a `rel` attribute with the value `stylesheet`.
```js
const link_element = document.querySelector('link');
const rel = link_element.getAttribute("rel");
assert.equal(rel, "stylesheet");
const linkElement = document.querySelector('link');
const rel = linkElement?.getAttribute("rel");
assert.strictEqual(rel, "stylesheet");
```
Your `link` element should have an `href` attribute with the value `styles.css`.
```js
const link = document.querySelector('link');
assert.equal(link.dataset.href, "styles.css");
assert.strictEqual(link?.dataset.href, "styles.css");
```
# --seed--