Skip to content

Commit 031faa7

Browse files
committed
more deno fixes
1 parent 5510644 commit 031faa7

2 files changed

Lines changed: 90 additions & 0 deletions

File tree

packages/deno/test/__snapshots__/mod.test.ts.snap

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,31 @@ snapshot[`captureException 1`] = `
113113
"Breadcrumbs",
114114
"DenoContext",
115115
"DenoServe",
116+
"DenoHttp",
116117
"DenoRedis",
117118
"Graphql",
118119
"VercelAI",
120+
"Amqplib",
121+
"Anthropic_AI",
122+
"Aws",
123+
"Express",
124+
"Firebase",
125+
"GenericPool",
126+
"Google_GenAI",
127+
"Hapi",
128+
"Kafka",
129+
"Koa",
130+
"LangChain",
131+
"LangGraph",
132+
"LruMemoizer",
133+
"Mongo",
134+
"Mongoose",
135+
"Mysql",
136+
"Mysql2",
137+
"OpenAI",
138+
"Postgres",
139+
"PostgresJs",
140+
"Tedious",
119141
"ContextLines",
120142
"NormalizePaths",
121143
"GlobalHandlers",
@@ -189,9 +211,31 @@ snapshot[`captureMessage 1`] = `
189211
"Breadcrumbs",
190212
"DenoContext",
191213
"DenoServe",
214+
"DenoHttp",
192215
"DenoRedis",
193216
"Graphql",
194217
"VercelAI",
218+
"Amqplib",
219+
"Anthropic_AI",
220+
"Aws",
221+
"Express",
222+
"Firebase",
223+
"GenericPool",
224+
"Google_GenAI",
225+
"Hapi",
226+
"Kafka",
227+
"Koa",
228+
"LangChain",
229+
"LangGraph",
230+
"LruMemoizer",
231+
"Mongo",
232+
"Mongoose",
233+
"Mysql",
234+
"Mysql2",
235+
"OpenAI",
236+
"Postgres",
237+
"PostgresJs",
238+
"Tedious",
195239
"ContextLines",
196240
"NormalizePaths",
197241
"GlobalHandlers",
@@ -272,9 +316,31 @@ snapshot[`captureMessage twice 1`] = `
272316
"Breadcrumbs",
273317
"DenoContext",
274318
"DenoServe",
319+
"DenoHttp",
275320
"DenoRedis",
276321
"Graphql",
277322
"VercelAI",
323+
"Amqplib",
324+
"Anthropic_AI",
325+
"Aws",
326+
"Express",
327+
"Firebase",
328+
"GenericPool",
329+
"Google_GenAI",
330+
"Hapi",
331+
"Kafka",
332+
"Koa",
333+
"LangChain",
334+
"LangGraph",
335+
"LruMemoizer",
336+
"Mongo",
337+
"Mongoose",
338+
"Mysql",
339+
"Mysql2",
340+
"OpenAI",
341+
"Postgres",
342+
"PostgresJs",
343+
"Tedious",
278344
"ContextLines",
279345
"NormalizePaths",
280346
"GlobalHandlers",
@@ -362,9 +428,31 @@ snapshot[`captureMessage twice 2`] = `
362428
"Breadcrumbs",
363429
"DenoContext",
364430
"DenoServe",
431+
"DenoHttp",
365432
"DenoRedis",
366433
"Graphql",
367434
"VercelAI",
435+
"Amqplib",
436+
"Anthropic_AI",
437+
"Aws",
438+
"Express",
439+
"Firebase",
440+
"GenericPool",
441+
"Google_GenAI",
442+
"Hapi",
443+
"Kafka",
444+
"Koa",
445+
"LangChain",
446+
"LangGraph",
447+
"LruMemoizer",
448+
"Mongo",
449+
"Mongoose",
450+
"Mysql",
451+
"Mysql2",
452+
"OpenAI",
453+
"Postgres",
454+
"PostgresJs",
455+
"Tedious",
368456
"ContextLines",
369457
"NormalizePaths",
370458
"GlobalHandlers",

packages/deno/test/deno-http.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ Deno.test({
107107
dsn: 'https://username@domain/123',
108108
tracesSampleRate: 1,
109109
beforeSendTransaction: sink.beforeSendTransaction,
110+
traceLifecycle: 'static',
110111
});
111112

112113
const server = http.createServer((_req, res) => {
@@ -148,6 +149,7 @@ Deno.test({
148149
dsn: 'https://username@domain/123',
149150
tracesSampleRate: 1,
150151
beforeSendTransaction: sink.beforeSendTransaction,
152+
traceLifecycle: 'static',
151153
});
152154

153155
// Use Deno.serve for the target so the test does not depend on the

0 commit comments

Comments
 (0)