Skip to content
Snippets Groups Projects

CE-1942: convert HostTable to common table

Merged CE-1942: convert HostTable to common table
All threads resolved!
Merged Christina Jenks requested to merge CE-1942-replace-custom-tables-with-common into develop
All threads resolved!
4 files
+ 197
8
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -23,4 +23,9 @@
@@ -23,4 +23,9 @@
//
//
// -- This will overwrite an existing command --
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
Cypress.Commands.add("login", () => {cy.setCookie("ce-deploy-auth", "DEADBEEF")});
\ No newline at end of file
// Import React Testing Library commands (select by a11y role etc)
 
import "@testing-library/cypress/add-commands";
 
 
// import custom auth commands
 
Cypress.Commands.add("login", () => {cy.setCookie("ce-deploy-auth", "DEADBEEF")});
Loading