Add content to cypress (#2633)

pull/2670/head
Giovana do Nascimento 2 years ago committed by GitHub
parent 3b7b6cb944
commit 02e0430d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      content/roadmaps/101-backend/content/121-web-sockets.md
  2. 1
      content/roadmaps/102-devops/content/101-os-concepts/105-sockets.md
  3. 2
      content/roadmaps/113-qa/content/100-qa-basics/107-testing-techniques/101-non-functional-testing/accessibility-testing.md
  4. 1
      content/roadmaps/113-qa/content/102-qa-manual-testing/100-tdd.md
  5. 7
      content/roadmaps/113-qa/content/103-qa-automated-testing/102-backend-automation/101-cypress.md

@ -5,3 +5,4 @@ Web sockets are defined as a two-way communication between the servers and the c
<ResourceGroupTitle>Free Content</ResourceGroupTitle> <ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.tutorialspoint.com/websockets/index.htm'>Introduction to WebSockets</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.tutorialspoint.com/websockets/index.htm'>Introduction to WebSockets</BadgeLink>
<BadgeLink colorScheme='green' badgeText='Course' href='https://www.youtube.com/watch?v=8ARodQ4Wlf4'>A Beginner's Guide to WebSockets</BadgeLink> <BadgeLink colorScheme='green' badgeText='Course' href='https://www.youtube.com/watch?v=8ARodQ4Wlf4'>A Beginner's Guide to WebSockets</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Library' href='https://socket.io/'>Socket.io Library Bidirectional and low-latency communication for every platform</BadgeLink>

@ -8,3 +8,4 @@ e.g. `http://192.168.0.1:8080`
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/socket-in-computer-network/'>What are Sockets?</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/socket-in-computer-network/'>What are Sockets?</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.tutorialspoint.com/unix_sockets/what_is_socket.htm'>Types of Sockets</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.tutorialspoint.com/unix_sockets/what_is_socket.htm'>Types of Sockets</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.baeldung.com/cs/port-vs-socket'>Port vs Socket</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.baeldung.com/cs/port-vs-socket'>Port vs Socket</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Library' href='https://socket.io/'>Socket.io Library Bidirectional and low-latency communication for every platform</BadgeLink>

@ -5,3 +5,5 @@ Accessibility Testing is defined as a type of Software Testing performed to ensu
<ResourceGroupTitle>Free Content</ResourceGroupTitle> <ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.guru99.com/accessibility-testing.html'>What is Accessibility Testing? (Examples)</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.guru99.com/accessibility-testing.html'>What is Accessibility Testing? (Examples)</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.softwaretestinghelp.com/what-is-web-accessibility-testing/'>Accessibility Testing Tutorial (Step By Step Guide)</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.softwaretestinghelp.com/what-is-web-accessibility-testing/'>Accessibility Testing Tutorial (Step By Step Guide)</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Library' href='https://www.ibm.com/able/'>IBM Accessibility Toolkit</BadgeLink>

@ -4,3 +4,4 @@ Test Driven Development (TDD) is software development approach in which test cas
<ResourceGroupTitle>Free Content</ResourceGroupTitle> <ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.guru99.com/test-driven-development.html'>What is Test Driven Development (TDD)? Tutorial with Example</BadgeLink> <BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.guru99.com/test-driven-development.html'>What is Test Driven Development (TDD)? Tutorial with Example</BadgeLink>
<BadgeLink colorScheme='green' badgeText='Course' href='https://pt.coursera.org/learn/test-and-behavior-driven-development-tdd-bdd'>Introduction to Test Driven Development (TDD)</BadgeLink>

@ -1 +1,8 @@
# Cypress # 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.
<ResourceGroupTitle>Free Resources</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Website' href='https://www.cypress.io/'>Official Website</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Docs' href='https://docs.cypress.io/guides/overview/why-cypress#Other'>Official Documentation</BadgeLink>
<BadgeLink colorScheme='purple' badgeText='Watch' href='https://www.youtube.com/watch?v=7N63cMKosIE'>Cypress End-to-End Testing</BadgeLink>

Loading…
Cancel
Save