Skip to content

Commit

Permalink
Fix Android events parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
louiszawadzki committed Feb 1, 2024
1 parent 764e641 commit 45b99e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/internal-testing-tools/src/InternalTesting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class InternalTestingWrapper {
);
}

return JSON.parse(events);
return JSON.parse(events).map((event: string) => JSON.parse(event));
};
}

Expand Down

0 comments on commit 45b99e9

Please sign in to comment.