2022-02-15
2221
#node
Ovie Okeh
4127
Feb 15, 2022 â‹… 7 min read

How to write end-to-end tests with Cypress and Node.js

Ovie Okeh Programming enthusiast, lover of all things that go beep.

Recent posts:

Using Pavex For Rust Web Development

Using Pavex for Rust web development

The Pavex Rust web framework is an exciting project that provides high performance, great usability, and speed.

Ukeje Goodness
May 10, 2024 â‹… 6 min read
Using The Resizeobserver Api In React For Responsive Designs

Using the ResizeObserver API in React for responsive designs

With ResizeObserver, you can build aesthetic React apps with responsive components that look and behave as you intend on any device.

Emmanuel Odioko
May 9, 2024 â‹… 11 min read
Creating JavaScript Tables Using Tabulator

Creating JavaScript tables using Tabulator

Explore React Tabulator to create interactive JavaScript tables, easily integrating pagination, search functionality, and bulk data submission.

Emmanuel John
May 9, 2024 â‹… 7 min read
How To Create Heatmaps In Javascript: Exploring The Heat Js Library

How to create heatmaps in JavaScript: The Heat.js library

This tutorial will explore the application of heatmaps in JavaScript projects, focusing on how to use the Heat.js library to generate them.

Oghenetega Denedo
May 8, 2024 â‹… 7 min read
View all posts

4 Replies to "How to write end-to-end tests with Cypress and Node.js"

  1. One comment on your test. You are using cy.contains() and not cy.should()
    cy.contains is a selector and not a validator, sure your test will fail if it cannot find the element but its not an assertion.

Leave a Reply