1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-18 13:22:55 -05:00
denoland-deno/tests/specs/cli/otel_basic/__test__.jsonc
snek 5c17bb4287
fix(unstable): otel context with multiple keys (#27230)
`SafeMap` treats its argument as an object with a "length" and index
properties, rather than a generic iterator, so every time we cloned it,
it was dropping all the data.
2024-12-04 13:14:37 +00:00

28 lines
551 B
Text

{
"steps": [
{
"args": "run -A main.ts basic.ts",
"output": "basic.out"
},
{
"args": "run -A main.ts natural_exit.ts",
"output": "natural_exit.out"
},
{
"args": "run -A main.ts deno_dot_exit.ts",
"output": "deno_dot_exit.out"
},
{
"args": "run -A main.ts uncaught.ts",
"output": "uncaught.out"
},
{
"args": "run -A main.ts metric.ts",
"output": "metric.out"
},
{
"args": "run -A --unstable-otel context.ts",
"output": ""
}
]
}