straight-chef-47891
06/02/2022, 2:04 PMripe-pager-8687
06/02/2022, 3:03 PMechoing-painting-40909
06/02/2022, 3:12 PMripe-pager-8687
06/02/2022, 3:14 PMts
const retries = 5;
let countRetries = 0;
let fn = async () => {
try {
const response = await cy.makeApiRequest(url, options);
if(response.body.data.status !== 'COMPLETE' && countRetries <= retries){
countRetries++;
fn();
return;
}
expect(response.body.data.status).to.eq('COMPLETE')
} catch (e){
if(countRetries <= retries) {
countRetries++;
fn();
return;
}
}
}
ripe-pager-8687
06/02/2022, 3:14 PMgray-kilobyte-89541
06/02/2022, 3:17 PMripe-pager-8687
06/02/2022, 3:24 PMfresh-doctor-14925
06/02/2022, 3:42 PMmysterious-eve-58444
06/02/2022, 4:52 PMbland-airport-93341
06/02/2022, 6:06 PMbusy-vegetable-18177
06/02/2022, 8:16 PMjs
beforeEach(() => {
cy.getCookies()
cy.seedDb()
cy.login()
cy.getCookies()
cy.request("/api/queries")
.its("body")
.as("queries")
})
it("should do the thing 1", function() {
cy.visit(`/playlist?playlist=${this.queries[0]._id.$oid}`)
})
it("should do the thing 2", function() {
cy.visit(`/playlist?playlist=${this.queries[0]._id.$oid}`)
})
And (consistently) I get the following on before each: https://owo.whats-th.is/4u7d5V9.png▾
busy-vegetable-18177
06/02/2022, 8:19 PMchilly-queen-22182
06/02/2022, 8:56 PMcuddly-stone-46263
06/02/2022, 9:34 PMcreamy-translator-27456
06/02/2022, 10:28 PMcreamy-translator-27456
06/02/2022, 10:28 PMbitter-fountain-36713
06/03/2022, 12:32 AMbitter-fountain-36713
06/03/2022, 12:38 AMbitter-fountain-36713
06/03/2022, 12:40 AMimportant-fish-21193
06/03/2022, 10:51 AMfancy-match-96032
06/03/2022, 12:33 PMcypress.config.js
, is the value for supportFile
under e2e
pointing to the correct file (assuming this is for end-to-end and not component testing)? also, can you post the full stack trace?important-fish-21193
06/03/2022, 12:44 PMfancy-match-96032
06/03/2022, 1:22 PMimportant-fish-21193
06/03/2022, 1:41 PMwooden-australia-44486
06/03/2022, 1:43 PMCypress.Commands.add
is not working. i must be missing something really simple, right?busy-vegetable-18177
06/03/2022, 1:45 PMbusy-vegetable-18177
06/03/2022, 1:45 PMwooden-australia-44486
06/03/2022, 1:45 PMwooden-australia-44486
06/03/2022, 1:50 PMnutritious-crayon-33896
06/03/2022, 1:50 PM