Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions e2e-tests/tests/expo.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,19 @@ describe('Expo', () => {
// Selecting `yarn` as the package manager
[KEYS.DOWN, KEYS.DOWN, KEYS.ENTER],
'Do you want to enable Session Replay to help debug issues? (See https://docs.sentry.io/platforms/react-native/session-replay/)',
));
),
{
timeout: 240_000,
});
const feedbackWidgetPrompted =
sessionReplayPrompted &&
(await wizardInstance.sendStdinAndWaitForOutput(
// Enable session replay
[KEYS.ENTER],
'Do you want to enable the Feedback Widget to collect feedback from your users? (See https://docs.sentry.io/platforms/react-native/user-feedback/)',
));
const logsPrompted =

const logsPrompted =
feedbackWidgetPrompted &&
(await wizardInstance.sendStdinAndWaitForOutput(
// Enable feedback widget
Expand Down
4 changes: 3 additions & 1 deletion e2e-tests/tests/react-native.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ describe('ReactNative', () => {
// Selecting `yarn` as the package manager
[KEYS.DOWN, KEYS.DOWN, KEYS.ENTER],
'Do you want to enable Session Replay to help debug issues? (See https://docs.sentry.io/platforms/react-native/session-replay/)',
));
), {
timeout: 240_000,
});

const feedbackWidgetPrompted =
sessionReplayPrompted &&
Expand Down
Loading