Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added cypress-studio/.DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions cypress-studio/cypress.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const { defineConfig } = require('cypress')

module.exports = defineConfig({
experimentalStudio: true,
chromeWebSecurity: false,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
},
})
4 changes: 0 additions & 4 deletions cypress-studio/cypress.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ it('can add a product into cart', function() {
cy.get('[data-test="continue"]').click();
cy.get('[data-test="finish"]').click();
cy.get('.complete-header').should('be.visible');
cy.get('.complete-header').should('have.text', 'THANK YOU FOR YOUR ORDER');
cy.get('.complete-header').should('have.text', 'Thank you for your order!');
cy.get('.complete-text').should('have.text', 'Your order has been dispatched, and will arrive just as fast as the pony can get there!');
cy.get('.pony_express').should('be.visible');
/* ==== End Cypress Studio ==== */
Expand Down
Loading