diff --git a/deno_test/index.test.ts b/deno_test/index.test.ts index 860e8854..64960be5 100644 --- a/deno_test/index.test.ts +++ b/deno_test/index.test.ts @@ -20,7 +20,7 @@ Deno.test('Sentry Middleware', async () => { app.use( '/sentry/*', sentry(undefined, (sentry) => { - sentry.captureMessage('foo') + sentry.setUser({ id: 'test' }) }) ) app.get('/sentry/foo', (c) => c.text('foo'))