1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 11:33:09 +01:00

Add content to cypress (#2633)

This commit is contained in:
Giovana do Nascimento 2022-10-21 12:09:28 -03:00 committed by GitHub
parent 3b7b6cb944
commit 02e0430d98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 3 deletions

View File

@ -5,3 +5,4 @@ Web sockets are defined as a two-way communication between the servers and the c
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<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='blue' badgeText='Library' href='https://socket.io/'>Socket.io Library Bidirectional and low-latency communication for every platform</BadgeLink>

View File

@ -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.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='blue' badgeText='Library' href='https://socket.io/'>Socket.io Library Bidirectional and low-latency communication for every platform</BadgeLink>

View File

@ -5,3 +5,5 @@ Accessibility Testing is defined as a type of Software Testing performed to ensu
<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.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>

View File

@ -4,3 +4,4 @@ Test Driven Development (TDD) is software development approach in which test cas
<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='green' badgeText='Course' href='https://pt.coursera.org/learn/test-and-behavior-driven-development-tdd-bdd'>Introduction to Test Driven Development (TDD)</BadgeLink>

View File

@ -1 +1,8 @@
# 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>