fix(curriculum): update challenge to heading tags instead of headers (#43429)

* header changed to heading tag

* fix: Exercise about heading tags <h1> ... <h6>, accidentally refers to header tags

* fix: changed header to heading on pages affected

* Update curriculum/challenges/_meta/applied-visual-design/meta.json

Co-authored-by: Ilenia <nethleen@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-accessibility/use-headings-to-show-hierarchical-relationships-of-content.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-accessibility/use-headings-to-show-hierarchical-relationships-of-content.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-accessibility/use-headings-to-show-hierarchical-relationships-of-content.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-accessibility/use-headings-to-show-hierarchical-relationships-of-content.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-accessibility/use-headings-to-show-hierarchical-relationships-of-content.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/basic-html-cat-photo-app/part-002.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-size-of-a-header-versus-a-paragraph-tag.md

Co-authored-by: gikf <60067306+gikf@users.noreply.github.com>

* Update curriculum/challenges/english/01-responsive-web-design/applied-visual-design/adjust-the-size-of-a-header-versus-a-paragraph-tag.md

Co-authored-by: gikf <60067306+gikf@users.noreply.github.com>

* file renamed

* dashed-name changed for all languages

* made changes in all the challenges

* file title changed

* added cypress test

* cypress test added

* Update cypress/integration/learn/redirects/heading-challenge.js

Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>

Co-authored-by: Ilenia <nethleen@gmail.com>
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
Co-authored-by: gikf <60067306+gikf@users.noreply.github.com>
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
This commit is contained in:
Anurag Gupta
2021-10-25 19:17:54 +04:00
committed by GitHub
parent e37b600fba
commit f90dc7d903
17 changed files with 39 additions and 25 deletions

View File

@@ -14,7 +14,7 @@ As the challenges continue to use more complex compositions with React component
In the code editor, the `TypesOfFood` component is already rendering a component called `Vegetables`. Also, there is the `Fruits` component from the last challenge.
Nest two components inside of `Fruits` — first `NonCitrus`, and then `Citrus`. Both of these components are provided for you behind the scenes. Next, nest the `Fruits` class component into the `TypesOfFood` component, below the `h1` header and above `Vegetables`. The result should be a series of nested components, which uses two different component types.
Nest two components inside of `Fruits` — first `NonCitrus`, and then `Citrus`. Both of these components are provided for you behind the scenes. Next, nest the `Fruits` class component into the `TypesOfFood` component, below the `h1` heading element and above `Vegetables`. The result should be a series of nested components, which uses two different component types.
# --hints--

View File

@@ -109,7 +109,7 @@ assert(
);
```
The `h1` header should render the value of the `submit` field from the component's state.
The `h1` heading element should render the value of the `submit` field from the component's state.
```js
(() => {

View File

@@ -38,7 +38,7 @@ The React component should return a `div` element.
assert(Enzyme.shallow(React.createElement(MyComponent)).type() === 'div');
```
The returned `div` should render an `h1` header within it.
The returned `div` should render an `h1` heading element within it.
```js
assert(
@@ -48,7 +48,7 @@ assert(
);
```
The `h1` header should contain the string `Hello React!`.
The `h1` heading element should contain the string `Hello React!`.
```js
assert(

View File

@@ -27,7 +27,7 @@ assert(
);
```
`MyComponent` should render an `h1` header enclosed in a single `div`.
`MyComponent` should render an `h1` heading element enclosed in a single `div`.
```js
assert(
@@ -44,7 +44,7 @@ The rendered `h1` tag should include a reference to `{name}`.
assert(/<h1>\n*\s*\{\s*name\s*\}\s*\n*<\/h1>/.test(getUserInput('index')));
```
The rendered `h1` header should contain text rendered from the component's state.
The rendered `h1` heading element should contain text rendered from the component's state.
```js
async () => {

View File

@@ -33,7 +33,7 @@ assert(
);
```
`MyComponent` should render an `h1` header enclosed in a single `div`.
`MyComponent` should render an `h1` heading element enclosed in a single `div`.
```js
assert(
@@ -43,7 +43,7 @@ assert(
);
```
The rendered `h1` header should only contain text rendered from the component's state.
The rendered `h1` heading element should only contain text rendered from the component's state.
```js
async () => {

View File

@@ -35,13 +35,13 @@ assert(
);
```
`MyComponent` should render an `h1` header.
`MyComponent` should render an `h1` heading element.
```js
assert(Enzyme.mount(React.createElement(MyComponent)).find('h1').length === 1);
```
The rendered `h1` header should contain text rendered from the component's state.
The rendered `h1` heading element should contain text rendered from the component's state.
```js
async () => {