import 'cypress-file-upload'; Cypress.Commands.add('resetDB', () => { // Although cypress clearly states that a webserver should not be run // from within it, listmonk is killed, the DB reset, and run again // in the background. If the DB is reset without restartin listmonk, // the live Postgres connections in the app throw errors because the // schema changes midway. cy.exec(Cypress.env('server_init_command')); }); // Takes a th class selector of a Buefy table, clicks it sorting the table, // then compares the values of [td.data-id] attri of all the rows in the // table against the given IDs, asserting the expected order of sort. Cypress.Commands.add('sortTable', (theadSelector, ordIDs) => { cy.get(theadSelector).click(); cy.get('tbody td[data-id]').each(($el, index) => { expect(ordIDs[index]).to.equal(parseInt($el.attr('data-id'))); }); }); Cypress.Commands.add('loginAndVisit', (url) => { cy.visit(url, { auth: { username: Cypress.env('username'), password: Cypress.env('password'), }, }); }); Cypress.Commands.add('clickMenu', (...selectors) => { selectors.forEach((s) => { cy.get(`.menu a[data-cy="${s}"]`).click(); }); }); // https://www.nicknish.co/blog/cypress-targeting-elements-inside-iframes Cypress.Commands.add('iframe', { prevSubject: 'element' }, ($iframe, callback = () => {}) => cy .wrap($iframe) .should((iframe) => expect(iframe.contents().find('body')).to.exist) .then((iframe) => cy.wrap(iframe.contents().find('body'))) .within({}, callback));