Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests(e2e): Remove await timeout in nest e2e tests #13243

Merged
merged 3 commits into from
Aug 6, 2024

Conversation

nicohrubec
Copy link
Contributor

Adding a separate flush endpoint that flushes the client in the application so that we can remove the timeout await and speed up tests.

Copy link
Contributor

github-actions bot commented Aug 6, 2024

size-limit report 📦

Path Size
@sentry/browser 22.46 KB (0%)
@sentry/browser (incl. Tracing) 34.24 KB (0%)
@sentry/browser (incl. Tracing, Replay) 70.29 KB (0%)
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags 63.63 KB (0%)
@sentry/browser (incl. Tracing, Replay with Canvas) 74.69 KB (0%)
@sentry/browser (incl. Tracing, Replay, Feedback) 87.3 KB (0%)
@sentry/browser (incl. Tracing, Replay, Feedback, metrics) 89.15 KB (0%)
@sentry/browser (incl. metrics) 26.76 KB (0%)
@sentry/browser (incl. Feedback) 39.4 KB (0%)
@sentry/browser (incl. sendFeedback) 27.08 KB (0%)
@sentry/browser (incl. FeedbackAsync) 31.73 KB (0%)
@sentry/react 25.22 KB (0%)
@sentry/react (incl. Tracing) 37.23 KB (0%)
@sentry/vue 26.6 KB (0%)
@sentry/vue (incl. Tracing) 36.08 KB (0%)
@sentry/svelte 22.59 KB (0%)
CDN Bundle 23.68 KB (0%)
CDN Bundle (incl. Tracing) 35.92 KB (0%)
CDN Bundle (incl. Tracing, Replay) 70.35 KB (0%)
CDN Bundle (incl. Tracing, Replay, Feedback) 75.6 KB (0%)
CDN Bundle - uncompressed 69.44 KB (0%)
CDN Bundle (incl. Tracing) - uncompressed 106.36 KB (0%)
CDN Bundle (incl. Tracing, Replay) - uncompressed 218.21 KB (0%)
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 231.1 KB (0%)
@sentry/nextjs (client) 37.08 KB (0%)
@sentry/sveltekit (client) 34.81 KB (0%)
@sentry/node 114.77 KB (0%)
@sentry/node - without tracing 89.33 KB (0%)
@sentry/aws-serverless 98.5 KB (0%)

@nicohrubec nicohrubec marked this pull request as ready for review August 6, 2024 07:17
@nicohrubec nicohrubec requested a review from lforst August 6, 2024 07:17

@Get('flush')
async flush() {
flush();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

m: It may be worth to await the flush() call. Then we can be sure when we await the fetch call, that the flush went fully through.

@@ -65,7 +65,7 @@ test('Does not send HttpExceptions to Sentry', async ({ baseURL }) => {
await transactionEventPromise400;
await transactionEventPromise500;

await new Promise(resolve => setTimeout(resolve, 10000));
await fetch(`${baseURL}/flush`);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
await fetch(`${baseURL}/flush`);
await (await fetch(`${baseURL}/flush`)).text();

Let's await the full response body to ensure the endpoint completed. Same for the others.

@nicohrubec nicohrubec merged commit c8054cc into develop Aug 6, 2024
96 checks passed
@nicohrubec nicohrubec deleted the nh/nest-e2e-remove-promise branch August 6, 2024 07:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants