important-noon-13871
05/17/2023, 8:35 AMlet count = {
interest: 0,
};
cy.fixture('campaign_interest.json').then((mockAPIInterest) => {
cy.fixture('campaign_interest_empty.json').then((mockEmptyAPIInterest) => {
cy.intercept('GET', '/api/v2/dmp-light/campaign/interest/default*', (req) => {
count.interest++;
if (count.interest <= 1) {
req.reply({
statusCode: 200,
body: [mockAPIInterest]
});
} else {
req.reply({
statusCode: 200,
body: [mockEmptyAPIInterest],
});
}
}).as('getInterest');
});
});gray-kilobyte-89541
05/17/2023, 10:35 AM