feat(core)!: Remove kind for spans, move to sentry.kind attribute
#52431
build.yml
on: pull_request
Get CI Metadata
/
Get Metadata
6s
Check PR branches
4s
Matrix: job_bundler_plugin_integration_tests
Matrix: job_node_integration_tests
Matrix: job_node_unit_tests
Lint
1m 10s
Circular Dependency Check
1m 35s
Browser Unit Tests
3m 15s
Bun Unit Tests
41s
Deno Unit Tests
1m 2s
Cloudflare Integration Tests
5m 36s
Bun Integration Tests
1m 0s
Deno Integration Tests
42s
Check for faulty .d.ts files
41s
Matrix: job_browser_loader_tests
Matrix: job_browser_playwright_tests
Matrix: job_optional_e2e_tests
Matrix: job_e2e_tests
All required jobs passed or were skipped
4s
Annotations
49 errors, 4 warnings, and 255 notices
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic server POST:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.server', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "POST /my-path",
- "op": "http.server",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with prefetch request:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http.prefetch', β¦(3) } to deeply equal { op: 'http.client.prefetch', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client.prefetch",
- "source": "url",
+ "description": "test name",
+ "op": "http.prefetch",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic client GET:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.client', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works without attributes:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { op: 'http.client', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with deprecated http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/trace.test.ts > trace > startSpanManual > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L1010
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:1010:43
β― src/trace.ts:136:38
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
|
|
test/trace.test.ts > trace > startInactiveSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L668
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:668:39
|
|
test/trace.test.ts > trace > startSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L267
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:267:43
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
β― src/trace.ts:359:30
|
|
test/sampler.test.ts > SentrySampler > when span streaming is enabled > returns NOT_RECORD for root span matching ignoreSpans IgnoreSpanFilter with name and op:
packages/opentelemetry/test/sampler.test.ts#L211
AssertionError: expected 2 to be +0 // Object.is equality
- Expected
+ Received
- 0
+ 2
β― test/sampler.test.ts:211:31
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic server POST:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.server', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "POST /my-path",
- "op": "http.server",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with prefetch request:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http.prefetch', β¦(3) } to deeply equal { op: 'http.client.prefetch', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client.prefetch",
- "source": "url",
+ "description": "test name",
+ "op": "http.prefetch",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic client GET:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.client', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works without attributes:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { op: 'http.client', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with deprecated http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/trace.test.ts > trace > startSpanManual > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L1010
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:1010:43
β― src/trace.ts:136:38
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
|
|
test/trace.test.ts > trace > startInactiveSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L668
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:668:39
|
|
test/trace.test.ts > trace > startSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L267
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:267:43
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
β― src/trace.ts:359:30
|
|
test/sampler.test.ts > SentrySampler > when span streaming is enabled > returns NOT_RECORD for root span matching ignoreSpans IgnoreSpanFilter with name and op:
packages/opentelemetry/test/sampler.test.ts#L211
AssertionError: expected 2 to be +0 // Object.is equality
- Expected
+ Received
- 0
+ 2
β― test/sampler.test.ts:211:31
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic server POST:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.server', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "POST /my-path",
- "op": "http.server",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with prefetch request:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http.prefetch', β¦(3) } to deeply equal { op: 'http.client.prefetch', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client.prefetch",
- "source": "url",
+ "description": "test name",
+ "op": "http.prefetch",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic client GET:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.client', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works without attributes:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { op: 'http.client', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with deprecated http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/trace.test.ts > trace > startSpanManual > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L1010
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:1010:43
β― src/trace.ts:136:38
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
|
|
test/trace.test.ts > trace > startInactiveSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L668
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:668:39
|
|
test/trace.test.ts > trace > startSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L267
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:267:43
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
β― src/trace.ts:359:30
|
|
test/sampler.test.ts > SentrySampler > when span streaming is enabled > returns NOT_RECORD for root span matching ignoreSpans IgnoreSpanFilter with name and op:
packages/opentelemetry/test/sampler.test.ts#L211
AssertionError: expected 2 to be +0 // Object.is equality
- Expected
+ Received
- 0
+ 2
β― test/sampler.test.ts:211:31
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic server POST:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.server', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "POST /my-path",
- "op": "http.server",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with prefetch request:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http.prefetch', β¦(3) } to deeply equal { op: 'http.client.prefetch', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client.prefetch",
- "source": "url",
+ "description": "test name",
+ "op": "http.prefetch",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works with basic client GET:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { op: 'http', β¦(3) } to deeply equal { op: 'http.client', β¦(3) }
- Expected
+ Received
{
"data": {
"url": "https://www.example.com/my-path",
},
- "description": "GET https://www.example.com/my-path",
- "op": "http.client",
- "source": "url",
+ "description": "test name",
+ "op": "http",
+ "source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > descriptionForHttpMethod > works without attributes:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L569
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { op: 'http.client', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:569:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/utils/parseSpanDescription.test.ts > parseSpanDescription > works with deprecated http method:
packages/opentelemetry/test/utils/parseSpanDescription.test.ts#L366
AssertionError: expected { description: 'test name', β¦(2) } to deeply equal { description: 'test name', β¦(2) }
- Expected
+ Received
{
"description": "test name",
- "op": "http.client",
+ "op": "http",
"source": "custom",
}
β― test/utils/parseSpanDescription.test.ts:366:20
|
|
test/trace.test.ts > trace > startSpanManual > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L1010
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:1010:43
β― src/trace.ts:136:38
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
|
|
test/trace.test.ts > trace > startInactiveSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L668
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:668:39
|
|
test/trace.test.ts > trace > startSpan > allows to pass base SpanOptions:
packages/opentelemetry/test/trace.test.ts#L267
AssertionError: expected { test1: 'test 1', test2: 2, β¦(1) } to deeply equal { 'sentry.sample_rate': 1, β¦(3) }
- Expected
+ Received
{
- "sentry.kind": "client",
"sentry.sample_rate": 1,
"test1": "test 1",
"test2": 2,
}
β― test/trace.test.ts:267:43
β― src/trace.ts:95:15
β― handleCallbackErrors ../core/src/utils/handleCallbackErrors.ts:41:26
β― src/trace.ts:94:14
β― SentryAsyncLocalStorageContextManager.with src/asyncLocalStorageContextManager.ts:74:36
β― ContextAPI.with ../../node_modules/@opentelemetry/api/src/api/context.ts:68:42
β― Tracer.startActiveSpan ../../node_modules/@opentelemetry/sdk-trace/src/Tracer.ts:251:28
β― src/trace.ts:92:19
β― src/trace.ts:359:30
|
|
test/sampler.test.ts > SentrySampler > when span streaming is enabled > returns NOT_RECORD for root span matching ignoreSpans IgnoreSpanFilter with name and op:
packages/opentelemetry/test/sampler.test.ts#L211
AssertionError: expected 2 to be +0 // Object.is equality
- Expected
+ Received
- 0
+ 2
β― test/sampler.test.ts:211:31
|
|
[chromium] βΊ tests/orpc-error.test.ts:4:1 βΊ should capture server-side orpc error:
../../_temp/test-application/tests/orpc-error.test.ts#L13
1) [chromium] βΊ tests/orpc-error.test.ts:4:1 βΊ should capture server-side orpc error βββββββββββββ
Error: page.waitForTimeout: Test timeout of 30000ms exceeded.
11 |
12 | await page.goto('/');
> 13 | await page.waitForTimeout(500);
| ^
14 | await page.getByRole('link', { name: 'Error' }).click();
15 |
16 | const orpcError = await orpcErrorPromise;
at /home/runner/work/_temp/test-application/tests/orpc-error.test.ts:13:14
|
|
[chromium] βΊ tests/orpc-error.test.ts:4:1 βΊ should capture server-side orpc error:
../../_temp/test-application/tests/orpc-error.test.ts#L0
1) [chromium] βΊ tests/orpc-error.test.ts:4:1 βΊ should capture server-side orpc error βββββββββββββ
Test timeout of 30000ms exceeded.
|
|
[chromium] βΊ tests/trpc-mutation.test.ts:4:1 βΊ should create transaction with trpc input for mutation:
../../_temp/test-application/tests/trpc-mutation.test.ts#L0
2) [chromium] βΊ tests/trpc-mutation.test.ts:4:1 βΊ should create transaction with trpc input for mutation
Test timeout of 30000ms exceeded.
|
|
[chromium] βΊ tests/trpc-error.test.ts:4:1 βΊ should capture error with trpc context:
../../_temp/test-application/tests/trpc-error.test.ts#L0
1) [chromium] βΊ tests/trpc-error.test.ts:4:1 βΊ should capture error with trpc context ββββββββββββ
Test timeout of 30000ms exceeded.
|
|
E2E nextjs-app-dir (next@15) Test
Process completed with exit code 1.
|
|
[chromium] βΊ tests/edge.test.ts:29:5 βΊ Should record transaction for edge server components:
../../_temp/test-application/tests/edge.test.ts#L45
1) [chromium] βΊ tests/edge.test.ts:29:5 βΊ Should record transaction for edge server components βββ
Error: expect(received).toBe(expected) // Object.is equality
Expected: "http.server"
Received: "http"
43 |
44 | expect(serverComponentTransaction).toBeDefined();
> 45 | expect(serverComponentTransaction.contexts?.trace?.op).toBe('http.server');
| ^
46 |
47 | // For some reason headers aren't picked up on Next.js 13 - also causing scope isolation to be broken
48 | if (nextjsMajor >= 14) {
at /home/runner/work/_temp/test-application/tests/edge.test.ts:45:58
|
|
E2E nextjs-app-dir Test
Process completed with exit code 1.
|
|
[chromium] βΊ tests/edge.test.ts:29:5 βΊ Should record transaction for edge server components:
../../_temp/test-application/tests/edge.test.ts#L45
1) [chromium] βΊ tests/edge.test.ts:29:5 βΊ Should record transaction for edge server components βββ
Error: expect(received).toBe(expected) // Object.is equality
Expected: "http.server"
Received: "http"
43 |
44 | expect(serverComponentTransaction).toBeDefined();
> 45 | expect(serverComponentTransaction.contexts?.trace?.op).toBe('http.server');
| ^
46 |
47 | // For some reason headers aren't picked up on Next.js 13 - also causing scope isolation to be broken
48 | if (nextjsMajor >= 14) {
at /home/runner/work/_temp/test-application/tests/edge.test.ts:45:58
|
|
All required jobs passed or were skipped
Process completed with exit code 1.
|
|
E2E aws-serverless Test
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: aws-actions/setup-sam@v2. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
E2E aws-serverless-layer Test
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: aws-actions/setup-sam@v2. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
E2E aws-serverless-layer (Node 22) Test
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: aws-actions/setup-sam@v2. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Size Check
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: ./dev-packages/size-limit-gh-action. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
π Playwright Run Summary
2 passed (2.6s)
|
|
π Playwright Run Summary
2 passed (3.7s)
|
|
π Playwright Run Summary
3 skipped
17 passed (2.7s)
|
|
π Playwright Run Summary
4 passed (4.5s)
|
|
π Playwright Run Summary
2 passed (4.7s)
|
|
π Playwright Run Summary
19 passed (7.0s)
|
|
π Playwright Run Summary
3 passed (8.8s)
|
|
π Playwright Run Summary
12 passed (5.8s)
|
|
π Playwright Run Summary
4 passed (7.2s)
|
|
π Playwright Run Summary
15 passed (3.0s)
|
|
π Playwright Run Summary
3 passed (2.9s)
|
|
π Playwright Run Summary
5 passed (11.9s)
|
|
π Playwright Run Summary
4 passed (6.6s)
|
|
π Playwright Run Summary
7 passed (8.8s)
|
|
π Playwright Run Summary
3 passed (4.6s)
|
|
π Playwright Run Summary
1 passed (3.7s)
|
|
π Playwright Run Summary
1 passed (5.3s)
|
|
π Playwright Run Summary
3 passed (4.7s)
|
|
π Playwright Run Summary
8 passed (3.5s)
|
|
π Playwright Run Summary
8 passed (3.5s)
|
|
π Playwright Run Summary
3 passed (4.3s)
|
|
π Playwright Run Summary
5 skipped
8 passed (6.4s)
|
|
π Playwright Run Summary
13 passed (12.7s)
|
|
π Playwright Run Summary
23 passed (14.9s)
|
|
π Playwright Run Summary
1 skipped
24 passed (16.5s)
|
|
π Playwright Run Summary
4 passed (4.7s)
|
|
π Playwright Run Summary
7 passed (7.8s)
|
|
π Playwright Run Summary
3 passed (3.9s)
|
|
π Playwright Run Summary
1 passed (3.0s)
|
|
π Playwright Run Summary
9 passed (9.8s)
|
|
π Playwright Run Summary
18 passed (18.4s)
|
|
π Playwright Run Summary
7 passed (5.3s)
|
|
π Playwright Run Summary
18 passed (19.2s)
|
|
π Playwright Run Summary
12 passed (5.2s)
|
|
π Playwright Run Summary
5 passed (9.1s)
|
|
π Playwright Run Summary
9 passed (12.3s)
|
|
π Playwright Run Summary
1 passed (1.9s)
|
|
π Playwright Run Summary
1 passed (6.4s)
|
|
π Playwright Run Summary
3 skipped
17 passed (2.4s)
|
|
π Playwright Run Summary
6 passed (10.9s)
|
|
π Playwright Run Summary
6 passed (24.8s)
|
|
π Playwright Run Summary
4 passed (3.5s)
|
|
π Playwright Run Summary
1 passed (2.6s)
|
|
π Playwright Run Summary
11 passed (10.5s)
|
|
π Playwright Run Summary
1 skipped
13 passed (24.4s)
|
|
π Playwright Run Summary
1 skipped
71 passed (4.1s)
|
|
π Playwright Run Summary
1 skipped
71 passed (3.8s)
|
|
π Playwright Run Summary
6 passed (10.8s)
|
|
π Playwright Run Summary
1 passed (4.7s)
|
|
π Playwright Run Summary
2 passed (32.0s)
|
|
π Playwright Run Summary
1 passed (3.7s)
|
|
π Playwright Run Summary
1 passed (3.7s)
|
|
π Playwright Run Summary
2 passed (20.7s)
|
|
π Playwright Run Summary
5 passed (7.5s)
|
|
π Playwright Run Summary
3 passed (6.6s)
|
|
π Playwright Run Summary
4 passed (7.5s)
|
|
π Playwright Run Summary
13 passed (15.6s)
|
|
π Playwright Run Summary
12 passed (27.9s)
|
|
π Playwright Run Summary
5 passed (9.6s)
|
|
π Playwright Run Summary
2 passed (29.4s)
|
|
π Playwright Run Summary
1 passed (4.8s)
|
|
π Playwright Run Summary
10 passed (28.0s)
|
|
π Playwright Run Summary
2 skipped
19 passed (9.7s)
|
|
π Playwright Run Summary
15 passed (10.8s)
|
|
π Playwright Run Summary
12 passed (28.1s)
|
|
π Playwright Run Summary
1 skipped
9 passed (5.5s)
|
|
π Playwright Run Summary
1 skipped
9 passed (5.8s)
|
|
π Playwright Run Summary
10 passed (10.7s)
|
|
π Playwright Run Summary
2 passed (32.5s)
|
|
π Playwright Run Summary
1 passed (3.5s)
|
|
π Playwright Run Summary
14 passed (26.7s)
|
|
π Playwright Run Summary
2 passed (28.6s)
|
|
π Playwright Run Summary
10 passed (26.7s)
|
|
π Playwright Run Summary
11 passed (19.6s)
|
|
π Playwright Run Summary
2 skipped
22 passed (34.0s)
|
|
π Playwright Run Summary
40 passed (19.7s)
|
|
π Playwright Run Summary
13 passed (12.7s)
|
|
π Playwright Run Summary
12 passed (7.7s)
|
|
π Playwright Run Summary
10 passed (32.5s)
|
|
π Playwright Run Summary
9 passed (12.0s)
|
|
π Playwright Run Summary
12 passed (27.8s)
|
|
π Playwright Run Summary
10 passed (37.9s)
|
|
π Playwright Run Summary
30 passed (29.9s)
|
|
π Playwright Run Summary
12 passed (28.5s)
|
|
π Playwright Run Summary
4 passed (30.3s)
|
|
π Playwright Run Summary
53 passed (27.2s)
|
|
π Playwright Run Summary
19 skipped
2 passed (9.7s)
|
|
π Playwright Run Summary
16 passed (28.8s)
|
|
π Playwright Run Summary
22 passed (9.5s)
|
|
π Playwright Run Summary
4 skipped
9 passed (28.5s)
|
|
π Playwright Run Summary
19 skipped
2 passed (5.3s)
|
|
π Playwright Run Summary
4 passed (6.8s)
|
|
π Playwright Run Summary
1 passed (5.5s)
|
|
π Playwright Run Summary
4 passed (1.8s)
|
|
π Playwright Run Summary
5 passed (7.8s)
|
|
π Playwright Run Summary
11 passed (13.6s)
|
|
π Playwright Run Summary
3 passed (16.2s)
|
|
π Playwright Run Summary
3 passed (10.4s)
|
|
π Playwright Run Summary
8 passed (6.5s)
|
|
π Playwright Run Summary
8 passed (2.7s)
|
|
π Playwright Run Summary
12 passed (27.7s)
|
|
π Playwright Run Summary
1 passed (3.0s)
|
|
π Playwright Run Summary
1 passed (3.0s)
|
|
π Playwright Run Summary
19 skipped
2 passed (4.4s)
|
|
π Playwright Run Summary
11 passed (14.6s)
|
|
π Playwright Run Summary
5 passed (34.0s)
|
|
π Playwright Run Summary
8 passed (19.4s)
|
|
π Playwright Run Summary
8 passed (4.9s)
|
|
π Playwright Run Summary
3 passed (7.1s)
|
|
π Playwright Run Summary
12 passed (20.4s)
|
|
π Playwright Run Summary
13 passed (25.3s)
|
|
π Playwright Run Summary
3 passed (16.9s)
|
|
π Playwright Run Summary
3 passed (10.3s)
|
|
π Playwright Run Summary
12 passed (28.1s)
|
|
π Playwright Run Summary
40 passed (19.8s)
|
|
π Playwright Run Summary
9 passed (11.2s)
|
|
π Playwright Run Summary
6 passed (35.2s)
|
|
π Playwright Run Summary
4 passed (9.7s)
|
|
π Playwright Run Summary
12 passed (28.6s)
|
|
π Playwright Run Summary
2 skipped
22 passed (36.1s)
|
|
π Playwright Run Summary
9 passed (8.7s)
|
|
π Playwright Run Summary
2 passed (29.6s)
|
|
π Playwright Run Summary
15 skipped
12 passed (21.4s)
|
|
π Playwright Run Summary
3 passed (4.2s)
|
|
π Playwright Run Summary
12 passed (27.9s)
|
|
π Playwright Run Summary
11 passed (6.6s)
|
|
π Playwright Run Summary
11 passed (6.9s)
|
|
π Playwright Run Summary
1 skipped
9 passed (4.9s)
|
|
π Playwright Run Summary
1 skipped
9 passed (5.2s)
|
|
π Playwright Run Summary
8 passed (13.4s)
|
|
π Playwright Run Summary
4 passed (9.7s)
|
|
π Playwright Run Summary
10 passed (27.0s)
|
|
π Playwright Run Summary
2 skipped
14 passed (1.2m)
|
|
π Playwright Run Summary
19 skipped
2 passed (3.4s)
|
|
π Playwright Run Summary
15 passed (20.1s)
|
|
π Playwright Run Summary
8 passed (23.7s)
|
|
π Playwright Run Summary
8 passed (16.9s)
|
|
π Playwright Run Summary
19 skipped
2 passed (4.3s)
|
|
π Playwright Run Summary
16 passed (23.4s)
|
|
π Playwright Run Summary
2 skipped
27 passed (38.6s)
|
|
π Playwright Run Summary
9 passed (45.4s)
|
|
π Playwright Run Summary
2 passed (48.3s)
|
|
π Playwright Run Summary
17 passed (57.5s)
|
|
π Playwright Run Summary
2 passed (34.2s)
|
|
π Playwright Run Summary
10 passed (36.3s)
|
|
π Playwright Run Summary
2 skipped
22 passed (37.4s)
|
|
π Playwright Run Summary
15 skipped
12 passed (22.1s)
|
|
π Playwright Run Summary
8 skipped
22 passed (10.7s)
|
|
π Playwright Run Summary
5 passed (41.5s)
|
|
π Playwright Run Summary
5 passed (28.4s)
|
|
π Playwright Run Summary
7 skipped
23 passed (11.2s)
|
|
π Playwright Run Summary
4 passed (37.9s)
|
|
π Playwright Run Summary
4 passed (7.9s)
|
|
π Playwright Run Summary
3 passed (31.6s)
|
|
π Playwright Run Summary
3 passed (8.9s)
|
|
π Playwright Run Summary
13 passed (33.8s)
|
|
π Playwright Run Summary
1 flaky
[chromium] βΊ tests/orpc-error.test.ts:4:1 βΊ should capture server-side orpc error ββββββββββββββ
2 passed (45.4s)
|
|
π Playwright Run Summary
3 passed (7.0s)
|
|
π Playwright Run Summary
4 passed (31.3s)
|
|
π Playwright Run Summary
4 skipped
10 passed (32.8s)
|
|
π Playwright Run Summary
2 skipped
12 passed (7.7s)
|
|
π Playwright Run Summary
7 skipped
23 passed (11.3s)
|
|
π Playwright Run Summary
476 skipped
189 passed (29.4s)
|
|
π Playwright Run Summary
13 passed (46.8s)
|
|
π Playwright Run Summary
13 passed (9.7s)
|
|
π Playwright Run Summary
5 skipped
25 passed (17.4s)
|
|
π Playwright Run Summary
5 passed (46.0s)
|
|
π Playwright Run Summary
5 passed (11.0s)
|
|
π Playwright Run Summary
4 skipped
26 passed (19.0s)
|
|
π Playwright Run Summary
1 skipped
29 passed (20.1s)
|
|
π Playwright Run Summary
6 skipped
6 passed (37.9s)
|
|
π Playwright Run Summary
12 passed (51.7s)
|
|
π Playwright Run Summary
13 passed (34.1s)
|
|
π Playwright Run Summary
13 passed (8.0s)
|
|
π Playwright Run Summary
2 passed (49.1s)
|
|
π Playwright Run Summary
2 flaky
[chromium] βΊ tests/trpc-error.test.ts:4:1 βΊ should capture error with trpc context βββββββββββββ
[chromium] βΊ tests/trpc-mutation.test.ts:4:1 βΊ should create transaction with trpc input for mutation
1 passed (40.6s)
|
|
π Playwright Run Summary
3 passed (3.8s)
|
|
π Playwright Run Summary
1 failed
[chromium] βΊ tests/edge.test.ts:29:5 βΊ Should record transaction for edge server components ββββ
2 skipped
31 passed (1.1m)
|
|
π Playwright Run Summary
4 skipped
10 passed (35.7s)
|
|
π Playwright Run Summary
2 skipped
12 passed (7.4s)
|
|
π Playwright Run Summary
475 skipped
190 passed (36.0s)
|
|
π Playwright Run Summary
13 passed (50.4s)
|
|
π Playwright Run Summary
13 passed (9.0s)
|
|
π Playwright Run Summary
4 passed (19.2s)
|
|
π Playwright Run Summary
52 passed (1.1m)
|
|
π Playwright Run Summary
1 failed
[chromium] βΊ tests/edge.test.ts:29:5 βΊ Should record transaction for edge server components ββββ
2 skipped
31 passed (1.1m)
|
|
π Playwright Run Summary
4 passed (20.2s)
|
|
π Playwright Run Summary
52 passed (1.1m)
|
|
π Playwright Run Summary
471 skipped
194 passed (36.4s)
|
|
π Playwright Run Summary
15 passed (23.9s)
|
|
π Playwright Run Summary
3 skipped
31 passed (1.2m)
|
|
π Playwright Run Summary
3 skipped
31 passed (38.8s)
|
|
π Playwright Run Summary
341 skipped
324 passed (1.3m)
|
|
π Playwright Run Summary
339 skipped
326 passed (1.5m)
|
|
π Playwright Run Summary
13 skipped
30 passed (1.7m)
|
|
π Playwright Run Summary
2 skipped
41 passed (1.1m)
|
|
π Playwright Run Summary
13 skipped
30 passed (1.7m)
|
|
π Playwright Run Summary
2 skipped
41 passed (1.1m)
|
|
π Playwright Run Summary
43 passed (2.2m)
|
|
π Playwright Run Summary
13 skipped
30 passed (1.6m)
|
|
π Playwright Run Summary
2 skipped
41 passed (1.1m)
|
|
π Playwright Run Summary
3 skipped
31 passed (1.8m)
|
|
π Playwright Run Summary
2 skipped
32 passed (35.8s)
|
|
π Playwright Run Summary
1 skipped
166 passed (2.6m)
|
|
π Playwright Run Summary
11 passed (11.5s)
|
|
π Playwright Run Summary
7 passed (27.8s)
|
|
π Playwright Run Summary
9 passed (10.9s)
|
|
π Playwright Run Summary
11 passed (5.5s)
|
|
π Playwright Run Summary
11 passed (5.9s)
|
|
π Playwright Run Summary
197 skipped
468 passed (3.2m)
|
|
π Playwright Run Summary
3 skipped
31 passed (2.1m)
|
|
π Playwright Run Summary
2 skipped
32 passed (37.9s)
|
|
π Playwright Run Summary
3 skipped
163 passed (3.5m)
|
|
π Playwright Run Summary
192 skipped
473 passed (3.1m)
|
|
π Playwright Run Summary
9 skipped
34 passed (2.9m)
|
|
π Playwright Run Summary
2 skipped
41 passed (1.0m)
|
|
π Playwright Run Summary
1 passed (3.5s)
|
|
π Playwright Run Summary
1 passed (3.9s)
|
|
π Playwright Run Summary
1 skipped
71 passed (4.3s)
|
|
π Playwright Run Summary
57 skipped
608 passed (3.9m)
|
|
π Playwright Run Summary
60 skipped
605 passed (4.1m)
|
|
π Playwright Run Summary
9 skipped
34 passed (3.0m)
|
|
π Playwright Run Summary
2 skipped
41 passed (1.0m)
|
|
π Playwright Run Summary
9 skipped
34 passed (3.1m)
|
|
π Playwright Run Summary
2 skipped
41 passed (1.0m)
|
|
π Playwright Run Summary
4 skipped
9 passed (27.9s)
|
|
π Playwright Run Summary
55 skipped
610 passed (4.0m)
|
|
π Playwright Run Summary
60 skipped
605 passed (4.1m)
|
|
π Playwright Run Summary
4 passed (20.5s)
|
|
π Playwright Run Summary
5 skipped
161 passed (3.1m)
|
|
π Playwright Run Summary
190 skipped
475 passed (3.8m)
|
|
π Playwright Run Summary
2 passed (2.6s)
|
|
π Playwright Run Summary
3 passed (3.6s)
|
|
π Playwright Run Summary
9 passed (7.2s)
|
|
π Playwright Run Summary
1 skipped
71 passed (4.6s)
|
|
π Playwright Run Summary
9 passed (10.8s)
|
|
π Playwright Run Summary
9 passed (11.1s)
|
|
π Playwright Run Summary
55 skipped
610 passed (4.2m)
|
|
π Playwright Run Summary
3 skipped
163 passed (2.5m)
|
|
π Playwright Run Summary
5 skipped
25 passed (12.3s)
|
|
π Playwright Run Summary
2 passed (30.6s)
|
|
π Playwright Run Summary
7 passed (6.6s)
|
|
π Playwright Run Summary
5 passed (17.9s)
|
|
π Playwright Run Summary
7 passed (15.1s)
|
|
π Playwright Run Summary
12 passed (17.1s)
|
|
π Playwright Run Summary
12 passed (17.2s)
|
|
π Playwright Run Summary
4 passed (10.0s)
|
|
π Playwright Run Summary
4 passed (9.6s)
|
|
π Playwright Run Summary
15 skipped
12 passed (18.9s)
|
|
π Playwright Run Summary
10 passed (26.9s)
|
|
π Playwright Run Summary
5 passed (8.4s)
|
|
π Playwright Run Summary
2 skipped
22 passed (33.7s)
|
|
π Playwright Run Summary
1 skipped
14 passed (13.4s)
|
|
π Playwright Run Summary
12 passed (31.8s)
|
|
π Playwright Run Summary
12 passed (31.9s)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
E2E Test Dump (nextjs-app-dir (next@15))
|
83.9 KB |
sha256:e490ef58680161db5f3da7a39661c62c59b91faf95934ada5ab89b68e49e20a7
|
|
|
E2E Test Dump (nextjs-app-dir)
|
83.6 KB |
sha256:201609fc70673aaf3ff7528b3cc60b437503d5945737d57048b85faf5f106b9d
|
|
|
build-bundle-output
|
17.6 MB |
sha256:d8f7e17ce1cf9ef5cb2e983fbaeecd93f3026e278eabc93b25517c208765abd1
|
|
|
build-layer-output
|
1.48 MB |
sha256:08d80d75f851b3718b60f5e7f06bceb7ec66efeb6e927eb6943f94f855643554
|
|
|
build-output
|
11.7 MB |
sha256:9503dd7df22d04bcef4cc8dad7ed6d3527db8c3e28bd7762ba70a18ff9e56495
|
|
|
build-tarball-output
|
5.83 MB |
sha256:f14600f657dfafedb17cbe05e8f1914c9379f8fb98ac4297beff3d065a31eb12
|
|
|
playwright-traces-job_e2e_playwright_tests-nextjs-app-dir
|
22.4 KB |
sha256:e64a5d043c2855af253fef6d3cb1cd6dea3c6405a38c390bdb3e316414c8a93b
|
|