Skip to content

Commit

Permalink
Merge 96e707f into fc64bb6
Browse files Browse the repository at this point in the history
  • Loading branch information
hbenl authored Mar 8, 2024
2 parents fc64bb6 + 96e707f commit 3c4715e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function getCypressMarkerFrame(frames: Frame[]) {
let cypressSourceId: string | undefined;
let userSourceId: string | undefined;

for (let i = 1; i <= frames.length; i++) {
for (let i = 1; i < frames.length; i++) {
const sourceId = frames[i].functionLocation?.[0].sourceId;
if (!cypressSourceId && sourceId !== pluginSourceId) {
// The first non-plugin source will be cypress
Expand Down

0 comments on commit 3c4715e

Please sign in to comment.