Skip to content

Instantly share code, notes, and snippets.

@randalvance
Created February 16, 2020 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randalvance/63d9c045361e5e469ad190fa15280ede to your computer and use it in GitHub Desktop.
Save randalvance/63d9c045361e5e469ad190fa15280ede to your computer and use it in GitHub Desktop.
Medium Article - React Visual Testing with Cypress
/* eslint-disable no-undef */
/// <reference types="cypress" />
describe('Bar Chart Tests', function() {
it('Should match image snapshot', function() {
cy.visit('http://localhost:3000');
cy.get('.bar-chart').matchImageSnapshot('barChart');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment