Skip to content Skip to sidebar Skip to footer

Getting Error While Unit Testing My Own Node Modules With Cypress.io

Following this previous question & answer. I was able to start using Cypress to unit test my Node's module by using the task() method. However, I'm getting an error which I hav

Solution 1:

I was able to solve the issue by returning the task's value like so:

File:plugins/index,js

on('task', {
    getTicketBySummary({ issues, summaryTitle }) {
      return issues.data.issues.filter(issueData => {
        return issueData.fields.summary === summaryTitle ? issueData : null;
      });
    },
  });

After I updated my code to use the then() method & assert the passed param value instead like so:

File:utils.spec.js

it('returns an empty array, when no ticket summary is found', () => {
    cy.task('getTicketBySummary', {
        issues: mockedTickets,
        summaryTitle: 'This is ticket number 3',
     }).then(result =>expect(result).to.deep.equal(emptyArray));
});

Post a Comment for "Getting Error While Unit Testing My Own Node Modules With Cypress.io"