diff --git a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/100-jest.md b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/100-jest.md index 535d60df1..d3515e506 100644 --- a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/100-jest.md +++ b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/100-jest.md @@ -1 +1,6 @@ -# Jest \ No newline at end of file +# Jest + +Jest is a delightful JavaScript Testing Framework with a focus on simplicity. It works with projects using: Babel, TypeScript, Node, React, Angular, Vue and more! + +Free Content +Jest Website diff --git a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/101-react-testing-library.md b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/101-react-testing-library.md index c7ffd1cd5..8505ba7e5 100644 --- a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/101-react-testing-library.md +++ b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/101-react-testing-library.md @@ -1 +1,6 @@ -# React testing library \ No newline at end of file +# React Testing Library + +The React Testing Library is a very lightweight solution for testing React components. It provides light utility functions on top of react-dom and react-dom/test-utils, in a way that encourages better testing practices. Its primary guiding principle is: The more your tests resemble the way your software is used, the more confidence they can give you. + +Free Content +React Testing Library diff --git a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/102-cypress.md b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/102-cypress.md index c881065db..704ea86a7 100644 --- a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/102-cypress.md +++ b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/102-cypress.md @@ -1 +1,8 @@ -# Cypress \ No newline at end of file +# Cypress + +Cypress framework is a JavaScript-based end-to-end testing framework built on top of Mocha – a feature-rich JavaScript test framework running on and in the browser, making asynchronous testing simple and convenient. It also uses a BDD/TDD assertion library and a browser to pair with any JavaScript testing framework. + +Free Resources +Official Website +Official Documentation +Cypress End-to-End Testing diff --git a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/readme.md b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/readme.md index 94cfd7d77..1a310f6c0 100644 --- a/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/readme.md +++ b/content/roadmaps/103-react/content/102-react-ecosystem/106-testing/readme.md @@ -1 +1,7 @@ -# Testing \ No newline at end of file +# Testing + +A key to building software that meets requirements without defects is testing. Software testing helps developers know they are building the right software. When tests are run as part of the development process (often with continuous integration tools), they build confidence and prevent regressions in the code. + +Free Content +What is Software Testing? +Testing Pyramid