diff --git a/cypress/tests/integration/organizations/[organizationid].cy.js b/cypress/tests/integration/organizations/[organizationid].cy.js index 226a1886d..3e8c0e917 100644 --- a/cypress/tests/integration/organizations/[organizationid].cy.js +++ b/cypress/tests/integration/organizations/[organizationid].cy.js @@ -21,5 +21,6 @@ describe('Organizations', () => { cy.url().should('include', '/organizations'); cy.contains(org.name); + cy.screenshot(); }); }); diff --git a/cypress/tests/integration/planters/[planterid].cy.js b/cypress/tests/integration/planters/[planterid].cy.js index 0604f00fa..0bf73d806 100644 --- a/cypress/tests/integration/planters/[planterid].cy.js +++ b/cypress/tests/integration/planters/[planterid].cy.js @@ -14,5 +14,6 @@ describe('Planter page', () => { }); cy.contains(planter.id); cy.get('.MuiTypography-h2').contains(/sebastian g/i); + cy.screenshot(); }); }); diff --git a/cypress/tests/integration/trees/[treeid].cy.js b/cypress/tests/integration/trees/[treeid].cy.js index 9a533f9b0..331775ac2 100644 --- a/cypress/tests/integration/trees/[treeid].cy.js +++ b/cypress/tests/integration/trees/[treeid].cy.js @@ -16,4 +16,5 @@ it(`treeid page`, () => { }); cy.visit(treePath); cy.contains(`${exampleTreeData.id}`); + cy.screenshot(); });