Skip to content

Commit

Permalink
more shufffles
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Feb 20, 2024
1 parent 82743cd commit 3f23a50
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ sentryTest('should capture feedback (@sentry-internal/feedback import)', async (
await page.locator('[name="name"]').fill('Jane Doe');
await page.locator('[name="email"]').fill('janedoe@example.org');
await page.locator('[name="message"]').fill('my example feedback');
await page.getByLabel('Send Bug Report').click();

const [feedbackResp, replayReq1] = await Promise.all([feedbackRequestPromise, reqPromise1]);
const [,feedbackResp, replayReq1] = await Promise.all([page.getByLabel('Send Bug Report').click(), feedbackRequestPromise, reqPromise1]);

const feedbackEvent = envelopeRequestParser(feedbackResp.request());
const replayEvent = getReplayEvent(replayReq0);
Expand Down

0 comments on commit 3f23a50

Please sign in to comment.