123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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('serverInitCmd'));
- });
- // 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.wait(100);
- 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));
- Cypress.on('uncaught:exception', (err, runnable) => {
- if (err.hasOwnProperty('request')) {
- const u = err.request.url;
- if (u.includes('config') || u.includes('settings') || u.includes('events')) {
- return false;
- }
- }
- return true;
- });
|