feat(browser)!: Exploring deprecating standalone spans (v11 web vitals integration) #46459
build.yml
on: pull_request
Get CI Metadata
/
Get Metadata
6s
Check PR branches
4s
Matrix: job_node_core_integration_tests
Matrix: job_node_integration_tests
Matrix: job_node_unit_tests
Matrix: job_remix_integration_tests
Lint
1m 3s
Circular Dependency Check
1m 36s
Browser Unit Tests
4m 34s
Bun Unit Tests
42s
Deno Unit Tests
1m 10s
Cloudflare Integration Tests
1m 56s
Bun Integration Tests
40s
Check for faulty .d.ts files
42s
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
3s
Annotations
158 errors, 21 warnings, and 208 notices
|
E2E nextjs-16-tunnel Test
Process completed with exit code 1.
|
|
E2E nextjs-16 (canary, webpack) Test (optional)
Process completed with exit code 1.
|
|
E2E nextjs-16-tunnel (turbopack) Test
Process completed with exit code 1.
|
|
E2E nextjs-16 (canary, turbopack) Test (optional)
Process completed with exit code 1.
|
|
E2E nextjs-16-cf-workers Test
Process completed with exit code 1.
|
|
E2E nextjs-16 (webpack) Test
Process completed with exit code 1.
|
|
E2E nextjs-16-cf-workers (canary) Test
Process completed with exit code 1.
|
|
E2E nextjs-16-cacheComponents Test
Process completed with exit code 1.
|
|
E2E nextjs-16-cf-workers (latest) Test
Process completed with exit code 1.
|
|
E2E nextjs-16 (latest, turbopack) Test
Process completed with exit code 1.
|
|
E2E nextjs-16 Test
Process completed with exit code 1.
|
|
E2E nextjs-16-tunnel (webpack) Test
Process completed with exit code 1.
|
|
E2E nextjs-16 (latest, webpack) Test
Process completed with exit code 1.
|
|
E2E default-browser Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance.test.ts:4:5 › captures a pageload transaction:
../../_temp/test-application/tests/performance.test.ts#L13
1) [chromium] › tests/performance.test.ts:4:5 › captures a pageload transaction ──────────────────
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -14,11 +14,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"release": "e2e-test",
"request": Object {
"headers": Object {
"User-Agent": Any<String>,
11 | const pageLoadTransaction = await transactionPromise;
12 |
> 13 | expect(pageLoadTransaction).toMatchObject({
| ^
14 | contexts: {
15 | trace: {
16 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/performance.test.ts:13:31
|
|
E2E solid-tanstack-router Test
Process completed with exit code 1.
|
|
[chromium] › tests/routing-instrumentation.test.ts:74:1 › sends pageload transaction with web vitals measurements:
../../_temp/test-application/tests/routing-instrumentation.test.ts#L83
1) [chromium] › tests/routing-instrumentation.test.ts:74:1 › sends pageload transaction with web vitals measurements
Error: expect(received).toMatchObject(expected)
- Expected - 18
+ Received + 0
@@ -3,28 +3,10 @@
"trace": Object {
"op": "pageload",
"origin": "auto.pageload.solid.tanstack_router",
},
},
- "measurements": ObjectContaining {
- "fcp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "fp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "lcp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "ttfb": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- },
"transaction": "/",
"transaction_info": Object {
"source": "route",
},
}
81 | const transaction = await transactionPromise;
82 |
> 83 | expect(transaction).toMatchObject({
| ^
84 | contexts: {
85 | trace: {
86 | op: 'pageload',
at /home/runner/work/_temp/test-application/tests/routing-instrumentation.test.ts:83:23
|
|
E2E react-router-7-framework-spa Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L68
2) [chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance/with/sentry",
},
66 | const transaction = await txPromise;
67 |
> 68 | expect(transaction).toMatchObject({
| ^
69 | contexts: {
70 | trace: {
71 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:68:25
|
|
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L15
1) [chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance",
},
13 | const transaction = await txPromise;
14 |
> 15 | expect(transaction).toMatchObject({
| ^
16 | contexts: {
17 | trace: {
18 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:15:25
|
|
E2E astro-6 Test
Process completed with exit code 1.
|
|
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id:
../../_temp/test-application/tests/tracing.dynamic.test.ts#L28
1) [chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -13,11 +13,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Any<Object>,
"sdk": Object {
"integrations": Any<Array>,
"name": "sentry.javascript.astro",
26 | expect(clientPageloadParentSpanId).toEqual(serverPageloadSpanId);
27 |
> 28 | expect(clientPageloadTxn).toMatchObject({
| ^
29 | contexts: {
30 | trace: {
31 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/tracing.dynamic.test.ts:28:31
|
|
E2E vue-tanstack-router Test
Process completed with exit code 1.
|
|
[chromium] › tests/routing-instrumentation.test.ts:4:1 › sends pageload transaction with web vitals measurements:
../../_temp/test-application/tests/routing-instrumentation.test.ts#L13
1) [chromium] › tests/routing-instrumentation.test.ts:4:1 › sends pageload transaction with web vitals measurements
Error: expect(received).toMatchObject(expected)
- Expected - 18
+ Received + 0
@@ -3,28 +3,10 @@
"trace": Object {
"op": "pageload",
"origin": "auto.pageload.vue.tanstack_router",
},
},
- "measurements": ObjectContaining {
- "fcp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "fp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "lcp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "ttfb": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- },
"transaction": "/",
"transaction_info": Object {
"source": "route",
},
}
11 | const transaction = await transactionPromise;
12 |
> 13 | expect(transaction).toMatchObject({
| ^
14 | contexts: {
15 | trace: {
16 | op: 'pageload',
at /home/runner/work/_temp/test-application/tests/routing-instrumentation.test.ts:13:23
|
|
E2E astro-5 Test
Process completed with exit code 1.
|
|
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id:
../../_temp/test-application/tests/tracing.dynamic.test.ts#L28
1) [chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -13,11 +13,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Any<Object>,
"sdk": Object {
"integrations": Any<Array>,
"name": "sentry.javascript.astro",
26 | expect(clientPageloadParentSpanId).toEqual(serverPageloadSpanId);
27 |
> 28 | expect(clientPageloadTxn).toMatchObject({
| ^
29 | contexts: {
30 | trace: {
31 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/tracing.dynamic.test.ts:28:31
|
|
E2E astro-6-cf-workers Test
Process completed with exit code 1.
|
|
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id:
../../_temp/test-application/tests/tracing.dynamic.test.ts#L28
1) [chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -13,11 +13,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Any<Object>,
"sdk": Object {
"integrations": Any<Array>,
"name": "sentry.javascript.astro",
26 | expect(clientPageloadParentSpanId).toEqual(serverPageloadSpanId);
27 |
> 28 | expect(clientPageloadTxn).toMatchObject({
| ^
29 | contexts: {
30 | trace: {
31 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/tracing.dynamic.test.ts:28:31
|
|
E2E react-router-7-framework Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L68
2) [chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance/with/sentry",
},
66 | const transaction = await txPromise;
67 |
> 68 | expect(transaction).toMatchObject({
| ^
69 | contexts: {
70 | trace: {
71 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:68:25
|
|
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L15
1) [chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance",
},
13 | const transaction = await txPromise;
14 |
> 15 | expect(transaction).toMatchObject({
| ^
16 | contexts: {
17 | trace: {
18 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:15:25
|
|
E2E react-router-7-spa Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span:
../../_temp/test-application/tests/transactions.test.ts#L0
1) [chromium] › tests/transactions.test.ts:58:5 › sends an INP span ──────────────────────────────
Test timeout of 30000ms exceeded.
|
|
E2E react-router-7-framework-spa-node-20-18 Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L68
2) [chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance/with/sentry",
},
66 | const transaction = await txPromise;
67 |
> 68 | expect(transaction).toMatchObject({
| ^
69 | contexts: {
70 | trace: {
71 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:68:25
|
|
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L15
1) [chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance",
},
13 | const transaction = await txPromise;
14 |
> 15 | expect(transaction).toMatchObject({
| ^
16 | contexts: {
17 | trace: {
18 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:15:25
|
|
E2E react-create-browser-router Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:4:5 › Captures a pageload transaction:
../../_temp/test-application/tests/transactions.test.ts#L23
1) [chromium] › tests/transactions.test.ts:4:5 › Captures a pageload transaction ─────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 7
+ Received + 14
- ObjectContaining {
- "data": ObjectContaining {
- "deviceMemory": Any<String>,
- "effectiveConnectionType": Any<String>,
- "hardwareConcurrency": Any<String>,
+ Object {
+ "data": Object {
+ "browser.performance.navigation.activation_start": 0,
+ "browser.performance.time_origin": 1777323336.7615,
+ "browser.web_vital.fcp.value": 124,
+ "browser.web_vital.fp.value": 124,
+ "browser.web_vital.ttfb.request_time": 1.400000000023283,
+ "browser.web_vital.ttfb.value": 2.3000000000174623,
+ "device.memory.estimated_capacity": 8,
+ "device.processor_count": 4,
+ "network.connection.effective_type": "4g",
+ "network.connection.rtt": 0,
"sentry.idle_span_finish_reason": "idleTimeout",
"sentry.op": "pageload",
"sentry.origin": "auto.pageload.react.reactrouter_v6",
"sentry.sample_rate": 1,
"sentry.source": "route",
},
"op": "pageload",
"origin": "auto.pageload.react.reactrouter_v6",
- "span_id": StringMatching /[a-f0-9]{16}/,
+ "span_id": "9ba7c22b856e5b5a",
"status": "ok",
- "trace_id": StringMatching /[a-f0-9]{32}/,
+ "trace_id": "f1ec9517fad94c439fc3755d46e65b60",
}
21 | );
22 |
> 23 | expect(transactionEvent.contexts?.trace).toEqual(
| ^
24 | expect.objectContaining({
25 | data: expect.objectContaining({
26 | deviceMemory: expect.any(String),
at /home/runner/work/_temp/test-application/tests/transactions.test.ts:23:44
|
|
E2E effect-4-browser Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:4:5 › captures a pageload transaction:
../../_temp/test-application/tests/transactions.test.ts#L13
1) [chromium] › tests/transactions.test.ts:4:5 › captures a pageload transaction ─────────────────
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -14,11 +14,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"release": "e2e-test",
"request": Object {
"headers": Object {
"User-Agent": Any<String>,
11 | const pageLoadTransaction = await transactionPromise;
12 |
> 13 | expect(pageLoadTransaction).toMatchObject({
| ^
14 | contexts: {
15 | trace: {
16 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/transactions.test.ts:13:31
|
|
E2E tanstack-router Test
Process completed with exit code 1.
|
|
[chromium] › tests/routing-instrumentation.test.ts:38:1 › sends pageload transaction with web vitals measurements:
../../_temp/test-application/tests/routing-instrumentation.test.ts#L47
1) [chromium] › tests/routing-instrumentation.test.ts:38:1 › sends pageload transaction with web vitals measurements
Error: expect(received).toMatchObject(expected)
- Expected - 18
+ Received + 0
@@ -3,28 +3,10 @@
"trace": Object {
"op": "pageload",
"origin": "auto.pageload.react.tanstack_router",
},
},
- "measurements": ObjectContaining {
- "fcp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "fp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "lcp": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- "ttfb": ObjectContaining {
- "unit": "millisecond",
- "value": Any<Number>,
- },
- },
"transaction": "/",
"transaction_info": Object {
"source": "route",
},
}
45 | const transaction = await transactionPromise;
46 |
> 47 | expect(transaction).toMatchObject({
| ^
48 | contexts: {
49 | trace: {
50 | op: 'pageload',
at /home/runner/work/_temp/test-application/tests/routing-instrumentation.test.ts:47:23
|
|
E2E effect-3-browser Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:4:5 › captures a pageload transaction:
../../_temp/test-application/tests/transactions.test.ts#L13
1) [chromium] › tests/transactions.test.ts:4:5 › captures a pageload transaction ─────────────────
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -14,11 +14,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"release": "e2e-test",
"request": Object {
"headers": Object {
"User-Agent": Any<String>,
11 | const pageLoadTransaction = await transactionPromise;
12 |
> 13 | expect(pageLoadTransaction).toMatchObject({
| ^
14 | contexts: {
15 | trace: {
16 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/transactions.test.ts:13:31
|
|
E2E react-router-7-spa (TS 3.8) Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span:
../../_temp/test-application/tests/transactions.test.ts#L0
1) [chromium] › tests/transactions.test.ts:58:5 › sends an INP span ──────────────────────────────
Test timeout of 30000ms exceeded.
|
|
E2E astro-4 Test
Process completed with exit code 1.
|
|
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id:
../../_temp/test-application/tests/tracing.dynamic.test.ts#L28
1) [chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -13,11 +13,10 @@
"trace_id": StringMatching /[a-f0-9]{32}/,
},
},
"environment": "qa",
"event_id": StringMatching /[a-f0-9]{32}/,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Any<Object>,
"sdk": Object {
"integrations": Any<Array>,
"name": "sentry.javascript.astro",
26 | expect(clientPageloadParentSpanId).toEqual(serverPageloadSpanId);
27 |
> 28 | expect(clientPageloadTxn).toMatchObject({
| ^
29 | contexts: {
30 | trace: {
31 | data: expect.objectContaining({
at /home/runner/work/_temp/test-application/tests/tracing.dynamic.test.ts:28:31
|
|
E2E react-create-hash-router Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:105:5 › Captures a navigation transaction:
../../_temp/test-application/tests/transactions.test.ts#L115
2) [chromium] › tests/transactions.test.ts:105:5 › Captures a navigation transaction ─────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 4
+ Received + 6
@@ -1,13 +1,15 @@
Object {
- "data": ObjectContaining {
- "deviceMemory": Any<String>,
- "effectiveConnectionType": Any<String>,
- "hardwareConcurrency": Any<String>,
+ "data": Object {
+ "device.memory.estimated_capacity": 8,
+ "device.processor_count": 4,
+ "network.connection.effective_type": "4g",
+ "network.connection.rtt": 0,
"sentry.idle_span_finish_reason": "idleTimeout",
"sentry.op": "navigation",
"sentry.origin": "auto.navigation.react.reactrouter_v6",
+ "sentry.previous_trace": "80be44e3b91843bbb347b074c1084641-b41edbe0c52dd2a3-1",
"sentry.sample_rate": 1,
"sentry.source": "route",
},
"links": Array [
Object {
113 |
114 | const transactionEvent = await transactionEventPromise;
> 115 | expect(transactionEvent.contexts?.trace).toEqual({
| ^
116 | data: expect.objectContaining({
117 | deviceMemory: expect.any(String),
118 | effectiveConnectionType: expect.any(String),
at /home/runner/work/_temp/test-application/tests/transactions.test.ts:115:44
|
|
[chromium] › tests/transactions.test.ts:4:5 › Captures a pageload transaction:
../../_temp/test-application/tests/transactions.test.ts#L12
1) [chromium] › tests/transactions.test.ts:4:5 › Captures a pageload transaction ─────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 10
+ Received + 10
@@ -1,17 +1,17 @@
Object {
"data": Object {
- "deviceMemory": Any<String>,
- "effectiveConnectionType": Any<String>,
- "hardwareConcurrency": Any<String>,
- "lcp.element": Any<String>,
- "lcp.id": Any<String>,
- "lcp.loadTime": Any<Number>,
- "lcp.renderTime": Any<Number>,
- "lcp.size": Any<Number>,
- "performance.activationStart": Any<Number>,
- "performance.timeOrigin": Any<Number>,
+ "browser.performance.navigation.activation_start": 0,
+ "browser.performance.time_origin": 1777323336.9352,
+ "browser.web_vital.fcp.value": 128,
+ "browser.web_vital.fp.value": 128,
+ "browser.web_vital.ttfb.request_time": 1.3000000000174623,
+ "browser.web_vital.ttfb.value": 2.5,
+ "device.memory.estimated_capacity": 8,
+ "device.processor_count": 4,
+ "network.connection.effective_type": "4g",
+ "network.connection.rtt": 0,
"sentry.idle_span_finish_reason": "idleTimeout",
"sentry.op": "pageload",
"sentry.origin": "auto.pageload.react.reactrouter_v6",
"sentry.sample_rate": 1,
"sentry.source": "route",
10 |
11 | const transactionEvent = await transactionEventPromise;
> 12 | expect(transactionEvent.contexts?.trace).toEqual({
| ^
13 | data: {
14 | deviceMemory: expect.any(String),
15 | effectiveConnectionType: expect.any(String),
at /home/runner/work/_temp/test-application/tests/transactions.test.ts:12:44
|
|
E2E react-router-7-framework-custom Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L68
2) [chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance/with/sentry",
},
66 | const transaction = await txPromise;
67 |
> 68 | expect(transaction).toMatchObject({
| ^
69 | contexts: {
70 | trace: {
71 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:68:25
|
|
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L15
1) [chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance",
},
13 | const transaction = await txPromise;
14 |
> 15 | expect(transaction).toMatchObject({
| ^
16 | contexts: {
17 | trace: {
18 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:15:25
|
|
E2E react-router-7-framework (latest) Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L68
2) [chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance/with/sentry",
},
66 | const transaction = await txPromise;
67 |
> 68 | expect(transaction).toMatchObject({
| ^
69 | contexts: {
70 | trace: {
71 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:68:25
|
|
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L15
1) [chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance",
},
13 | const transaction = await txPromise;
14 |
> 15 | expect(transaction).toMatchObject({
| ^
16 | contexts: {
17 | trace: {
18 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:15:25
|
|
E2E react-router-7-framework-node-20-18 Test
Process completed with exit code 1.
|
|
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L68
2) [chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance/with/sentry",
},
66 | const transaction = await txPromise;
67 |
> 68 | expect(transaction).toMatchObject({
| ^
69 | contexts: {
70 | trace: {
71 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:68:25
|
|
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction:
../../_temp/test-application/tests/performance/pageload.client.test.ts#L15
1) [chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
Error: expect(received).toMatchObject(expected)
- Expected - 1
+ Received + 0
@@ -12,11 +12,10 @@
"trace_id": Any<String>,
},
},
"environment": "qa",
"event_id": Any<String>,
- "measurements": Any<Object>,
"platform": "javascript",
"request": Object {
"headers": Any<Object>,
"url": StringContaining "/performance",
},
13 | const transaction = await txPromise;
14 |
> 15 | expect(transaction).toMatchObject({
| ^
16 | contexts: {
17 | trace: {
18 | span_id: expect.any(String),
at /home/runner/work/_temp/test-application/tests/performance/pageload.client.test.ts:15:25
|
|
E2E react-17 Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span:
../../_temp/test-application/tests/transactions.test.ts#L0
1) [chromium] › tests/transactions.test.ts:58:5 › sends an INP span ──────────────────────────────
Test timeout of 30000ms exceeded.
|
|
[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.
|
|
E2E react-router-6 Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span:
../../_temp/test-application/tests/transactions.test.ts#L0
1) [chromium] › tests/transactions.test.ts:58:5 › sends an INP span ──────────────────────────────
Test timeout of 30000ms exceeded.
|
|
E2E react-router-6 (TS 3.8) Test
Process completed with exit code 1.
|
|
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span:
../../_temp/test-application/tests/transactions.test.ts#L0
1) [chromium] › tests/transactions.test.ts:58:5 › sends an INP span ──────────────────────────────
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.
|
|
Playwright esm (2/4) Tests
Process completed with exit code 1.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "8ca0d4cd339d4d56a0437040c1dd3844",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "8971969ea8344bdba8e8925dbc7af1f0",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "6105afff765f4edabb3f56a559041338",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "5dbe2474c3534a28bec2f98210ec0f7a",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
Playwright esm (4/4) Tests
Process completed with exit code 1.
|
|
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details:
dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals-lcp/test.ts#L23
7) [chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
Error: expect(received).toBeDefined()
Received: undefined
21 |
22 | const lcpSpan = eventData.spans?.find(({ op }) => op === 'ui.webvital.lcp');
> 23 | expect(lcpSpan).toBeDefined();
| ^
24 |
25 | const lcpAttrs = lcpSpan?.data ?? {};
26 | expect(lcpAttrs['browser.web_vital.lcp.value']).toBeGreaterThan(0);
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals-lcp/test.ts:23:19
|
|
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB:
dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals/test.ts#L51
6) [chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
Error: expect(received).toBeDefined()
Received: undefined
49 | const fpValue = pageloadAttrs['browser.web_vital.fp.value'] as number | undefined;
50 |
> 51 | expect(lcpValue).toBeDefined();
| ^
52 | expect(fcpValue).toBeDefined();
53 | expect(fpValue).toBeDefined();
54 |
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/web-vitals/test.ts:51:20
|
|
[chromium] › suites/tracing/metrics/handlers-lcp/test.ts:9:11 › should capture metrics for LCP instrumentation handlers:
dev-packages/browser-integration-tests/suites/tracing/metrics/handlers-lcp/test.ts#L30
5) [chromium] › suites/tracing/metrics/handlers-lcp/test.ts:9:11 › should capture metrics for LCP instrumentation handlers
Error: expect(received).toBeDefined()
Received: undefined
28 |
29 | const lcpSpan = eventData.spans?.find(({ op }) => op === 'ui.webvital.lcp');
> 30 | expect(lcpSpan).toBeDefined();
| ^
31 | const lcpAttrs = lcpSpan?.data ?? {};
32 | expect(lcpAttrs['browser.web_vital.lcp.value']).toBeGreaterThan(0);
33 |
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/handlers-lcp/test.ts:30:21
|
|
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.:
dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts#L73
4) [chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
Error: expect(received).toBeDefined()
Received: undefined
71 | await session.detach();
72 |
> 73 | expect(eventData.measurements).toBeDefined();
| ^
74 | expect(eventData.measurements?.['connection.rtt']?.value).toBe(50);
75 | },
76 | );
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts:73:36
|
|
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.:
dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts#L58
3) [chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
Error: expect(received).toBeDefined()
Received: undefined
56 | await session.detach();
57 |
> 58 | expect(eventData.measurements).toBeDefined();
| ^
59 | expect(eventData.measurements?.['connection.rtt']?.value).toBe(100);
60 | },
61 | );
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts:58:36
|
|
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.:
dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts#L43
2) [chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
Error: expect(received).toBeDefined()
Received: undefined
41 | await session.detach();
42 |
> 43 | expect(eventData.measurements).toBeDefined();
| ^
44 | expect(eventData.measurements?.['connection.rtt']?.value).toBe(200);
45 | },
46 | );
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts:43:36
|
|
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx:
dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts#L29
1) [chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
Error: expect(received).toBeDefined()
Received: undefined
27 | const eventData = await getFirstSentryEnvelopeRequest<Event>(page, url);
28 |
> 29 | expect(eventData.measurements).toBeDefined();
| ^
30 | expect(eventData.measurements?.['connection.rtt']?.value).toBe(0);
31 | });
32 |
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/metrics/connection-rtt/test.ts:29:34
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "0350b8703a0a450e9718b98e39be4091",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "f4b9cfa7e649425d8b623680bcc3a9cd",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "fcd4d45df301492b98ebbef5d26582da",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "9dcf0b5ed3c74514a9c0349d2c19a00d",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "5fc7d22503dc46719cd99eedee7047ee",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "c5e6645597b043d7a9b50edacc2aca28",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "ab137450dd7c43f9a3bab1d6e0ee76bd",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "f2bf8df32ce14966b1c7e4ce3ea88fbe",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "c448fb8d586f4ffaa2193ddc8237e171",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "20341c0b72b04041b49e3bb11a121084",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
Playwright bundle_tracing_replay_feedback_logs_metrics_min webkit Tests
Process completed with exit code 1.
|
|
[webkit] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [webkit] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[webkit] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [webkit] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[webkit] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [webkit] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[webkit] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [webkit] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
Test timeout of 30000ms exceeded.
|
|
[webkit] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [webkit] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[webkit] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [webkit] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "bd42969edcd94e81815ddc9eeec8d629",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "88c4617d2f704ac59cfff8c95d73aef8",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts#L0
7) [chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at waitForStreamedSpans (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:54:30)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:14:56
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts#L0
6) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts#L0
5) [chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/spanUtils.ts#L13
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/spanUtils.ts:13
11 | callback?: (spanEnvelope: StreamedSpanEnvelope) => boolean,
12 | ): Promise<StreamedSpanEnvelope> {
> 13 | const req = await page.waitForRequest(req => {
| ^
14 | const postData = req.postData();
15 | if (!postData) {
16 | return false;
at waitForStreamedSpanEnvelope (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/spanUtils.ts:13:26)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:26:66
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:25:47
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts#L0
4) [chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/utils/helpers.ts#L239
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
at ../utils/helpers.ts:239
237 | callback?: (event: TransactionEvent) => boolean,
238 | ): Promise<Request> {
> 239 | return page.waitForRequest(req => {
| ^
240 | const postData = req.postData();
241 | if (!postData) {
242 | return false;
at waitForTransactionRequest (/home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/utils/helpers.ts:239:15)
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:28:63
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:27:55
|
|
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence:
dev-packages/browser-integration-tests/suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts#L0
3) [chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence › Initial pageload
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone-mixed-transaction/test.ts#L0
2) [chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
Test timeout of 30000ms exceeded.
|
|
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope:
dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts#L26
1) [chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
Error: expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 6
Object {
+ "event_id": "e8b972b4d455409c9ce988709b6e70c0",
+ "sdk": Object {
+ "name": "sentry.javascript.browser",
+ "version": "10.50.0",
+ },
"sent_at": Any<String>,
"trace": Object {
"environment": "production",
"public_key": "public",
"sample_rand": Any<String>,
"sample_rate": "1",
"sampled": "true",
- "trace_id": undefined,
+ "trace_id": "a5aaf5961cf64a3ab3a9ec9a4d3a212c",
"transaction": "standalone_segment_span",
},
}
24 | const traceId = spanJson.trace_id;
25 |
> 26 | expect(headers).toEqual({
| ^
27 | sent_at: expect.any(String),
28 | trace: {
29 | environment: 'production',
at /home/runner/work/sentry-javascript/sentry-javascript/dev-packages/browser-integration-tests/suites/public-api/startSpan/standalone/test.ts:26:19
|
|
All required jobs passed or were skipped
Process completed with exit code 1.
|
|
Build
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: dkhunt27/action-nx-affected-list@v6.1. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Deno Unit Tests
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: denoland/setup-deno@v2.0.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
E2E nextjs-16-tunnel Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16-tunnel (turbopack) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16-cf-workers Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16 (webpack) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16-cf-workers (canary) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16-cacheComponents Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16-cf-workers (latest) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16 (latest, turbopack) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16 Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16-tunnel (webpack) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E nextjs-16 (latest, webpack) Test
No files were found with the provided path: /home/runner/work/_temp/test-application/test-results. No artifacts will be uploaded.
|
|
E2E deno Test
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: denoland/setup-deno@v2.0.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
E2E deno-streamed Test
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: denoland/setup-deno@v2.0.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
E2E aws-serverless-layer (Node 18) Test
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: aws-actions/setup-sam@v2. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
E2E aws-serverless Test
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: aws-actions/setup-sam@v2. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. 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 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: aws-actions/setup-sam@v2. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. 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 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: aws-actions/setup-sam@v2. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Browser Unit Tests
❌ Patch coverage check failed: 63.79% < target 80%
|
|
Size Check
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: ./dev-packages/size-limit-gh-action. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
🎭 Playwright Run Summary
8 passed (2.4s)
|
|
🎭 Playwright Run Summary
4 passed (4.4s)
|
|
🎭 Playwright Run Summary
3 skipped
17 passed (2.6s)
|
|
🎭 Playwright Run Summary
3 passed (2.5s)
|
|
🎭 Playwright Run Summary
3 passed (3.2s)
|
|
🎭 Playwright Run Summary
4 passed (2.9s)
|
|
🎭 Playwright Run Summary
20 passed (3.8s)
|
|
🎭 Playwright Run Summary
4 passed (2.1s)
|
|
🎭 Playwright Run Summary
12 passed (6.5s)
|
|
🎭 Playwright Run Summary
2 passed (4.1s)
|
|
🎭 Playwright Run Summary
4 passed (7.2s)
|
|
🎭 Playwright Run Summary
3 passed (2.5s)
|
|
🎭 Playwright Run Summary
1 passed (2.1s)
|
|
🎭 Playwright Run Summary
2 passed (3.3s)
|
|
🎭 Playwright Run Summary
1 passed (4.3s)
|
|
🎭 Playwright Run Summary
4 passed (2.3s)
|
|
🎭 Playwright Run Summary
13 passed (12.4s)
|
|
🎭 Playwright Run Summary
10 passed (10.4s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/performance.test.ts:4:5 › captures a pageload transaction ───────────────────
3 passed (7.9s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/routing-instrumentation.test.ts:74:1 › sends pageload transaction with web vitals measurements
2 passed (13.8s)
|
|
🎭 Playwright Run Summary
3 passed (5.4s)
|
|
🎭 Playwright Run Summary
15 passed (10.5s)
|
|
🎭 Playwright Run Summary
24 passed (16.9s)
|
|
🎭 Playwright Run Summary
20 passed (4.0s)
|
|
🎭 Playwright Run Summary
1 passed (5.2s)
|
|
🎭 Playwright Run Summary
11 passed (5.2s)
|
|
🎭 Playwright Run Summary
11 passed (5.6s)
|
|
🎭 Playwright Run Summary
3 passed (3.4s)
|
|
🎭 Playwright Run Summary
2 passed (2.3s)
|
|
🎭 Playwright Run Summary
5 passed (8.7s)
|
|
🎭 Playwright Run Summary
12 passed (6.5s)
|
|
🎭 Playwright Run Summary
3 passed (3.3s)
|
|
🎭 Playwright Run Summary
1 passed (4.4s)
|
|
🎭 Playwright Run Summary
1 passed (3.3s)
|
|
🎭 Playwright Run Summary
1 passed (3.3s)
|
|
🎭 Playwright Run Summary
3 passed (2.9s)
|
|
🎭 Playwright Run Summary
14 passed (7.9s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
5 passed (10.0s)
|
|
🎭 Playwright Run Summary
7 passed (11.3s)
|
|
🎭 Playwright Run Summary
3 passed (5.1s)
|
|
🎭 Playwright Run Summary
8 passed (4.7s)
|
|
🎭 Playwright Run Summary
3 skipped
17 passed (1.7s)
|
|
🎭 Playwright Run Summary
20 passed (2.9s)
|
|
🎭 Playwright Run Summary
1 passed (6.1s)
|
|
🎭 Playwright Run Summary
12 passed (7.9s)
|
|
🎭 Playwright Run Summary
5 passed (7.8s)
|
|
🎭 Playwright Run Summary
5 passed (6.9s)
|
|
🎭 Playwright Run Summary
4 passed (4.0s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
10 passed (15.8s)
|
|
🎭 Playwright Run Summary
16 passed (23.6s)
|
|
🎭 Playwright Run Summary
2 passed (4.5s)
|
|
🎭 Playwright Run Summary
4 passed (7.2s)
|
|
🎭 Playwright Run Summary
7 passed (6.3s)
|
|
🎭 Playwright Run Summary
8 passed (3.2s)
|
|
🎭 Playwright Run Summary
8 passed (3.3s)
|
|
🎭 Playwright Run Summary
3 passed (6.2s)
|
|
🎭 Playwright Run Summary
10 passed (25.3s)
|
|
🎭 Playwright Run Summary
11 passed (2.6s)
|
|
🎭 Playwright Run Summary
3 passed (5.9s)
|
|
🎭 Playwright Run Summary
9 passed (9.7s)
|
|
🎭 Playwright Run Summary
13 passed (28.3s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/routing-instrumentation.test.ts:4:1 › sends pageload transaction with web vitals measurements
2 passed (19.4s)
|
|
🎭 Playwright Run Summary
9 passed (10.6s)
|
|
🎭 Playwright Run Summary
29 passed (28.1s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
10 passed (15.5s)
|
|
🎭 Playwright Run Summary
12 passed (8.8s)
|
|
🎭 Playwright Run Summary
3 skipped
21 passed (18.7s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
8 passed (13.2s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
2 skipped
17 passed (23.7s)
|
|
🎭 Playwright Run Summary
4 passed (8.5s)
|
|
🎭 Playwright Run Summary
22 passed (11.7s)
|
|
🎭 Playwright Run Summary
5 passed (21.9s)
|
|
🎭 Playwright Run Summary
16 passed (28.5s)
|
|
🎭 Playwright Run Summary
10 passed (27.4s)
|
|
🎭 Playwright Run Summary
10 passed (6.6s)
|
|
🎭 Playwright Run Summary
10 passed (5.8s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span ───────────────────────────────
4 passed (37.1s)
|
|
🎭 Playwright Run Summary
1 passed (6.0s)
|
|
🎭 Playwright Run Summary
3 passed (2.8s)
|
|
🎭 Playwright Run Summary
9 passed (10.8s)
|
|
🎭 Playwright Run Summary
9 passed (10.7s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
5 passed (10.2s)
|
|
🎭 Playwright Run Summary
5 passed (17.4s)
|
|
🎭 Playwright Run Summary
7 passed (5.0s)
|
|
🎭 Playwright Run Summary
14 passed (24.6s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:4:5 › Captures a pageload transaction ──────────────────
4 passed (10.4s)
|
|
🎭 Playwright Run Summary
12 skipped
1 passed (3.6s)
|
|
🎭 Playwright Run Summary
1 skipped
14 passed (12.9s)
|
|
🎭 Playwright Run Summary
11 passed (6.5s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:4:5 › captures a pageload transaction ──────────────────
9 passed (37.5s)
|
|
🎭 Playwright Run Summary
11 passed (6.6s)
|
|
🎭 Playwright Run Summary
4 passed (7.8s)
|
|
🎭 Playwright Run Summary
5 passed (10.1s)
|
|
🎭 Playwright Run Summary
8 passed (7.4s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/routing-instrumentation.test.ts:38:1 › sends pageload transaction with web vitals measurements
2 passed (15.5s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:4:5 › captures a pageload transaction ──────────────────
9 passed (37.6s)
|
|
🎭 Playwright Run Summary
1 passed (3.1s)
|
|
🎭 Playwright Run Summary
2 passed (22.2s)
|
|
🎭 Playwright Run Summary
10 passed (5.2s)
|
|
🎭 Playwright Run Summary
10 passed (5.5s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span ───────────────────────────────
4 passed (38.2s)
|
|
🎭 Playwright Run Summary
12 passed (20.1s)
|
|
🎭 Playwright Run Summary
3 passed (3.4s)
|
|
🎭 Playwright Run Summary
5 passed (22.4s)
|
|
🎭 Playwright Run Summary
12 passed (28.8s)
|
|
🎭 Playwright Run Summary
5 passed (21.4s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/tracing.dynamic.test.ts:5:3 › tracing in dynamically rendered (ssr) routes › sends server and client pageload spans with the same trace id
8 passed (12.1s)
|
|
🎭 Playwright Run Summary
4 passed (9.9s)
|
|
🎭 Playwright Run Summary
13 passed (25.9s)
|
|
🎭 Playwright Run Summary
1 skipped
12 passed (4.4s)
|
|
🎭 Playwright Run Summary
12 passed (27.4s)
|
|
🎭 Playwright Run Summary
10 passed (27.6s)
|
|
🎭 Playwright Run Summary
12 skipped
1 passed (5.6s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/transactions.test.ts:4:5 › Captures a pageload transaction ──────────────────
[chromium] › tests/transactions.test.ts:105:5 › Captures a navigation transaction ──────────────
13 passed (21.1s)
|
|
🎭 Playwright Run Summary
12 passed (28.6s)
|
|
🎭 Playwright Run Summary
4 passed (10.2s)
|
|
🎭 Playwright Run Summary
9 passed (11.9s)
|
|
🎭 Playwright Run Summary
12 passed (27.7s)
|
|
🎭 Playwright Run Summary
12 passed (27.9s)
|
|
🎭 Playwright Run Summary
12 skipped
1 passed (3.6s)
|
|
🎭 Playwright Run Summary
9 passed (12.1s)
|
|
🎭 Playwright Run Summary
9 passed (8.9s)
|
|
🎭 Playwright Run Summary
12 skipped
1 passed (3.5s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
16 passed (20.5s)
|
|
🎭 Playwright Run Summary
12 passed (27.4s)
|
|
🎭 Playwright Run Summary
40 passed (19.7s)
|
|
🎭 Playwright Run Summary
4 passed (9.1s)
|
|
🎭 Playwright Run Summary
3 passed (7.0s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
2 skipped
17 passed (25.0s)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › tests/performance/pageload.client.test.ts:6:3 › client - pageload performance › should send pageload transaction
[chromium] › tests/performance/pageload.client.test.ts:56:3 › client - pageload performance › should update pageload transaction for dynamic routes
16 passed (20.7s)
|
|
🎭 Playwright Run Summary
23 passed (11.4s)
|
|
🎭 Playwright Run Summary
4 skipped
10 passed (23.8s)
|
|
🎭 Playwright Run Summary
4 skipped
10 passed (6.5s)
|
|
🎭 Playwright Run Summary
13 passed (27.0s)
|
|
🎭 Playwright Run Summary
8 passed (9.9s)
|
|
🎭 Playwright Run Summary
40 passed (19.7s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span ───────────────────────────────
4 passed (37.4s)
|
|
🎭 Playwright Run Summary
17 passed (57.0s)
|
|
🎭 Playwright Run Summary
4 skipped
10 passed (33.1s)
|
|
🎭 Playwright Run Summary
2 skipped
12 passed (6.9s)
|
|
🎭 Playwright Run Summary
1 flaky
[chromium] › tests/orpc-error.test.ts:4:1 › should capture server-side orpc error ──────────────
2 passed (42.3s)
|
|
🎭 Playwright Run Summary
3 passed (6.7s)
|
|
🎭 Playwright Run Summary
11 passed (18.3s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span ───────────────────────────────
7 passed (58.1s)
|
|
🎭 Playwright Run Summary
3 skipped
27 passed (40.0s)
|
|
🎭 Playwright Run Summary
30 passed (12.1s)
|
|
🎭 Playwright Run Summary
3 skipped
27 passed (41.8s)
|
|
🎭 Playwright Run Summary
30 passed (13.6s)
|
|
🎭 Playwright Run Summary
13 passed (48.6s)
|
|
🎭 Playwright Run Summary
13 passed (9.6s)
|
|
🎭 Playwright Run Summary
13 passed (48.0s)
|
|
🎭 Playwright Run Summary
13 passed (9.8s)
|
|
🎭 Playwright Run Summary
4 passed (35.3s)
|
|
🎭 Playwright Run Summary
4 passed (8.3s)
|
|
🎭 Playwright Run Summary
13 passed (50.8s)
|
|
🎭 Playwright Run Summary
13 passed (8.7s)
|
|
🎭 Playwright Run Summary
1 failed
[chromium] › tests/transactions.test.ts:58:5 › sends an INP span ───────────────────────────────
7 passed (58.2s)
|
|
🎭 Playwright Run Summary
5 passed (44.8s)
|
|
🎭 Playwright Run Summary
5 passed (10.7s)
|
|
🎭 Playwright Run Summary
4 skipped
10 passed (31.3s)
|
|
🎭 Playwright Run Summary
2 skipped
12 passed (7.8s)
|
|
🎭 Playwright Run Summary
4 passed (19.4s)
|
|
🎭 Playwright Run Summary
2 skipped
48 passed (1.0m)
|
|
🎭 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 (39.0s)
|
|
🎭 Playwright Run Summary
3 passed (4.3s)
|
|
🎭 Playwright Run Summary
4 passed (16.7s)
|
|
🎭 Playwright Run Summary
51 passed (1.0m)
|
|
🎭 Playwright Run Summary
2 skipped
29 passed (1.2m)
|
|
🎭 Playwright Run Summary
2 skipped
29 passed (36.8s)
|
|
🎭 Playwright Run Summary
5 skipped
25 passed (11.3s)
|
|
🎭 Playwright Run Summary
4 skipped
26 passed (19.2s)
|
|
🎭 Playwright Run Summary
8 skipped
22 passed (9.6s)
|
|
🎭 Playwright Run Summary
15 passed (28.9s)
|
|
🎭 Playwright Run Summary
7 skipped
23 passed (11.9s)
|
|
🎭 Playwright Run Summary
452 skipped
195 passed (35.3s)
|
|
🎭 Playwright Run Summary
4 passed (16.4s)
|
|
🎭 Playwright Run Summary
51 passed (59.8s)
|
|
🎭 Playwright Run Summary
43 passed (2.2m)
|
|
🎭 Playwright Run Summary
456 skipped
191 passed (36.8s)
|
|
🎭 Playwright Run Summary
7 skipped
23 passed (11.8s)
|
|
🎭 Playwright Run Summary
1 skipped
29 passed (17.8s)
|
|
🎭 Playwright Run Summary
5 skipped
25 passed (13.8s)
|
|
🎭 Playwright Run Summary
2 skipped
29 passed (2.0m)
|
|
🎭 Playwright Run Summary
2 skipped
29 passed (36.6s)
|
|
🎭 Playwright Run Summary
2 skipped
29 passed (2.1m)
|
|
🎭 Playwright Run Summary
2 skipped
29 passed (38.2s)
|
|
🎭 Playwright Run Summary
457 skipped
190 passed (35.2s)
|
|
🎭 Playwright Run Summary
320 skipped
327 passed (1.6m)
|
|
🎭 Playwright Run Summary
5 skipped
29 passed (2.1m)
|
|
🎭 Playwright Run Summary
6 skipped
28 passed (1.1m)
|
|
🎭 Playwright Run Summary
4 passed (26.7s)
|
|
🎭 Playwright Run Summary
2 skipped
32 passed (2.6m)
|
|
🎭 Playwright Run Summary
2 skipped
32 passed (1.1m)
|
|
🎭 Playwright Run Summary
1 skipped
161 passed (2.5m)
|
|
🎭 Playwright Run Summary
322 skipped
325 passed (1.5m)
|
|
🎭 Playwright Run Summary
2 skipped
32 passed (3.1m)
|
|
🎭 Playwright Run Summary
2 skipped
32 passed (1.1m)
|
|
🎭 Playwright Run Summary
3 skipped
159 passed (3.6m)
|
|
🎭 Playwright Run Summary
2 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
3 skipped
157 passed (2.6m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
192 skipped
441 passed (4.4m)
|
|
🎭 Playwright Run Summary
7 failed
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/handlers-lcp/test.ts:9:11 › should capture metrics for LCP instrumentation handlers
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
5 skipped
149 passed (3.4m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
187 skipped
446 passed (4.5m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
53 skipped
580 passed (5.2m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
51 skipped
582 passed (5.4m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
51 skipped
582 passed (5.4m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
56 skipped
577 passed (5.3m)
|
|
🎭 Playwright Run Summary
4 failed
[webkit] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[webkit] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[webkit] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[webkit] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
176 skipped
467 passed (4.2m)
|
|
🎭 Playwright Run Summary
14 failed
[chromium] › suites/public-api/startSpan/standalone/test.ts:10:11 › sends a segment span envelope
[chromium] › suites/public-api/startSpan/standalone-mixed-transaction/test.ts:10:11 › sends a transaction and a span envelope if a standalone span is created as a child of an ongoing span tree
[chromium] › suites/tracing/browserTracingIntegration/linked-traces/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/linked-traces-streamed/consistent-sampling/tracesSampler-precedence/test.ts:20:13 › When `consistentTraceSampling` is `true` › explicit sampling decisions in `tracesSampler` have precedence
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-animation-frame-before-navigation-streamed/test.ts:6:11 › doesn't capture long animation frame that starts before a navigation.
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/browserTracingIntegration/long-tasks-before-navigation-streamed/test.ts:6:11 › doesn't capture long task spans starting before a navigation in the navigation transaction
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:25:11 › should capture a `connection.rtt` metric. xxx
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:33:11 › should capture a `connection.rtt` metric with emulated value 200ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:48:11 › should capture a `connection.rtt` metric with emulated value 100ms on Chromium.
[chromium] › suites/tracing/metrics/connection-rtt/test.ts:63:11 › should capture a `connection.rtt` metric with emulated value 50ms on Chromium.
[chromium] › suites/tracing/metrics/web-vitals/test.ts:14:11 › paint web vitals values are greater than TTFB
[chromium] › suites/tracing/metrics/web-vitals-lcp/test.ts:7:11 › captures LCP vitals with element details
56 skipped
577 passed (5.3m)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
build-bundle-output
Expired
|
20 MB |
sha256:2c63ca9fb3290e9461013130279bc266a0b59339cee1070b2938e8271176d819
|
|
|
build-layer-output
Expired
|
1.72 MB |
sha256:8128e774a5689834e0351230756924815a69798fa4e7ee95f02429534991b32a
|
|
|
build-output
Expired
|
10.4 MB |
sha256:e9e8a400327a77ad99c4248d890cd550200abe586ae4ca19485f84754ed71856
|
|
|
build-tarball-output
Expired
|
4.96 MB |
sha256:7ffb44f7f6aaf7fd13ec5d5006b29f6bea49d20ecab1e6350d54dee1be101d1d
|
|
|
codecov-coverage-results-feat-v11-web-vitals-integration-job_browser_unit_tests
|
86.9 KB |
sha256:acd9cc682d365a244b36daf74bdb2685ccd6a8d87c088f63ee71849fdb200ca5
|
|
|
codecov-coverage-results-feat-v11-web-vitals-integration-job_node_unit_tests-18
|
253 KB |
sha256:17f1c564c737965f828c92777e571ef275e9b7f17ea08b4a1177094cdfccf5b8
|
|
|
codecov-coverage-results-feat-v11-web-vitals-integration-job_node_unit_tests-20
|
260 KB |
sha256:9fe3991014b807b48080ff245ff4113ae48b21b9c4a8899527272be28502ba9b
|
|
|
codecov-coverage-results-feat-v11-web-vitals-integration-job_node_unit_tests-22
|
260 KB |
sha256:894474159e670cbd6a59ae4d81ae5aaa4e18d3a081b39ff387447a8c911cc776
|
|
|
codecov-coverage-results-feat-v11-web-vitals-integration-job_node_unit_tests-24
|
260 KB |
sha256:301a679d6940a9e84f9d71b4a3e156e2edb7d41358c26609b8fbccbc0ff777d4
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_base
|
239 Bytes |
sha256:48af80f2b51b20a871f05121c0055260baf387c93616f759d608dfaad866b0dc
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_debug
|
243 Bytes |
sha256:27dcc670f3124cec12af3606a38413c7ca70a2f7e2a091681ee746a4fbd5cfce
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_eager
|
240 Bytes |
sha256:f4c0067bb568747452ee7ad773652413d9daa644ffa702c176e6f7b2d41ccc6d
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_replay
|
241 Bytes |
sha256:365f9830094a1bc269c8fe295276b119c2e5aae28325a881ad8b32cf604b32b7
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_replay_buffer
|
238 Bytes |
sha256:65c022a6bd8864acd4ac332afacbb5cc71d8199f757bc9ec4f4019696f53840b
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_tracing
|
243 Bytes |
sha256:a3fc6617eec0f7678e726389276287e9e9243531afc14853bf2f5f2ffe4277aa
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_loader_tests-browser-loader-loader_tracing_replay
|
240 Bytes |
sha256:886a16888797274c88f78c8834df6efe3c7c3f45ab75cf1691864d315bb24a8d
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle-chromium
|
249 Bytes |
sha256:076ecd0a0d6c5131ebb6554a309e9f9a52963198366a9544ca6ab2c0414dc903
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_logs_metrics-chromium
|
246 Bytes |
sha256:41a632dd329e39e32f84c7c4da608c2f490b1385747dcfc3d8e2f966122be319
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_min-chromium
|
245 Bytes |
sha256:a1a11a74a76fb07683858fe23ccc207a5f163fe8c09a1e5e40581f80e1120d66
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_replay-chromium
|
248 Bytes |
sha256:d887ebc0d4fdebbe5d111f6273f51ddd64c7a1d2b7bf1460fe2087a3d7570b7b
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_replay_logs_metrics-chromium
|
246 Bytes |
sha256:4ef57403125f8aaa8ab52c5e99341ec4236e7dadd5699c981527683828517d85
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing-chromium
|
3.04 KB |
sha256:c95859c7188aec317ea691cb113c3babb2683c51be23e1cc92718552a433de0a
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_logs_metrics-chromium
|
3.04 KB |
sha256:cfc28be942ce27b5378e526ebf6021cf8b490a71b29726921c5aa579bd73e2ab
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay-chromium
|
3.04 KB |
sha256:436a3ec131f021fac5f3a9fdbd4f89aea7f5b83e9bc55b3f8b06fe7826205584
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay_feedback-chromium
|
3.05 KB |
sha256:753f95e69b35f067748a3ca0acf07cb90d86ea28ddc1fedecf03af7fd0941d60
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay_feedback_logs_metrics-chromium
|
3.05 KB |
sha256:26f4c232facc394a9c416f42da7b1330f3022a11ce54e6115558294f5997b16a
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay_feedback_logs_metrics_min-chromium
|
3.04 KB |
sha256:c7329b5a911059083c289d8d8b718bdd3367527d85543a7e441be1e317f72fb7
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay_feedback_logs_metrics_min-firefox
|
232 Bytes |
sha256:67c7eea9f738128b1f37406a5951001c433cf6b7f5cc9403b4fb47caa8bcfba7
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay_feedback_logs_metrics_min-webkit
|
1.71 KB |
sha256:bb798fa87e073ebfeb8163f3e3ebbeef6a38469a129bf1725c579cd589b999bd
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-bundle_tracing_replay_logs_metrics-chromium
|
3.04 KB |
sha256:dfbf3c4eceda3bfb865a2d69a83e5dd2d8589c1ae09f58b914974f545be38db8
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-esm-chromium-1
|
244 Bytes |
sha256:0a65341a5db0b0a45dfbae8b7f2e98d428b52e2771d1e7f7852d9cbfc36d8d2a
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-esm-chromium-2
|
1.15 KB |
sha256:7dec9cefd67f762f109f76c14a9da1eeb823e193b2001656a6b85e5721a06319
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-esm-chromium-3
|
245 Bytes |
sha256:e827035f799acc7ef4fa472a90b26347ce48e5edc62541c484860067e1e0d8ee
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_playwright_tests-browser-playwright-esm-chromium-4
|
1.67 KB |
sha256:1a132bfe621a87428ae88102877dee8821c1e636281a075e96b394ed355b77f8
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_browser_unit_tests
|
241 Bytes |
sha256:4ba1376b2282c4dfc38ce95ac64b439f9b5b4f1d7fa0a479795bf5d90bcc8c2e
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_node_unit_tests-18
|
255 Bytes |
sha256:28fcc336f596d65b3d7c197ed31b949399f7314402fc11bfe7b2b67b11b445b4
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_node_unit_tests-20
|
253 Bytes |
sha256:81ecfa7a10356b07bcb2b464ce9280b6e88cf23fe77794f5a42f7d6048949033
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_node_unit_tests-22
|
252 Bytes |
sha256:ff0a5b77cfb9ca459c7dffea59e5be2de0e677a527076f1d4b309cb0853f9693
|
|
|
codecov-test-results-feat-v11-web-vitals-integration-job_node_unit_tests-24
|
252 Bytes |
sha256:cdf7c38940805464e7d3de3035b32166d541603b96d31fa99e26d3fed3c74bfb
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing-chromium-0
Expired
|
7.18 MB |
sha256:1d58508787c1a42a2fc2177ab170ecdefc4cb2b1e1ea99c23a74a467e07d1e2d
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_logs_metrics-chromium-0
Expired
|
7.35 MB |
sha256:cc7cb16d5e60569e09797ba37ac17175d66c0714411ea32eea8415b7f78b84f2
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_replay-chromium-0
Expired
|
10.5 MB |
sha256:81d4d6c71016e142889f6ef479d5f480ff5e08f8dd3e07a8e6cf7b0b44b6b54b
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_replay_feedback-chromium-0
Expired
|
10.8 MB |
sha256:31691f25b08ed8c8712a7886b849b0142f80db336bc549031e3a40c4da4ba711
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_replay_feedback_logs_metrics-chromium-0
Expired
|
11 MB |
sha256:a1995dc80f7a778afb83ea975b603ae6b5cde3d96d59a3df8f988a0a206b64e9
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_replay_feedback_logs_metrics_min-chromium-0
Expired
|
4 MB |
sha256:9732072e5caceff21d75e4d6d61b559b69e4b543f951162ebcc6f00695579c02
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_replay_feedback_logs_metrics_min-webkit-0
Expired
|
1.11 MB |
sha256:d480d1bde01e6c39b4b3e54336e4425f0f838ec9f4463106bc845a2baadf085b
|
|
|
playwright-traces-job_browser_playwright_tests-bundle_tracing_replay_logs_metrics-chromium-0
Expired
|
10.6 MB |
sha256:23bed25f9444dabf28f7b6d1b091dbcbeaa1c5f6fd2790c2c1f5cad821208424
|
|
|
playwright-traces-job_browser_playwright_tests-esm-chromium-2
Expired
|
2.36 MB |
sha256:ed486f831f4366988074c0be11e0009043d67f93c675c6651dd0601a911c2f69
|
|
|
playwright-traces-job_browser_playwright_tests-esm-chromium-4
Expired
|
8.51 MB |
sha256:fbe1efd9f303d0e7809e86c27b60adeb8642e3878d85408b3c66de50aa0ec00d
|
|
|
playwright-traces-job_e2e_playwright_tests-astro-4
Expired
|
14.7 KB |
sha256:f2be8bc7fbee2c5a5d392a496902f69fe6ece4ed98d105a263a2fc6101fd8d47
|
|
|
playwright-traces-job_e2e_playwright_tests-astro-5
Expired
|
14.5 KB |
sha256:3fe8505195afb7540105344cf62a1bfaebbd8d0dc62e5680afcb59d61d8da76a
|
|
|
playwright-traces-job_e2e_playwright_tests-astro-6
Expired
|
16.3 KB |
sha256:ea2468ce986e7d698d946c901dd0fb25351b2babe30530ab824a59347af576cd
|
|
|
playwright-traces-job_e2e_playwright_tests-astro-6-cf-workers
Expired
|
16 KB |
sha256:e70f194ef5724a350b9dd06793ace1a805fad7f20e0c0489ef5f80924184b6b8
|
|
|
playwright-traces-job_e2e_playwright_tests-default-browser
Expired
|
12.4 KB |
sha256:2a1a469dcd39e05afbebc581b8b936191d68a5a4236a6486daacf48a149e8cfc
|
|
|
playwright-traces-job_e2e_playwright_tests-effect-3-browser
Expired
|
25.3 KB |
sha256:23a0aa9b827a841ef14e3cd063b4497f477b7f75e51e74eba4a5e998793447a8
|
|
|
playwright-traces-job_e2e_playwright_tests-effect-4-browser
Expired
|
25.2 KB |
sha256:7a148b155d1858d878b984fa9206827eed4a3e04395930d8bd70e6e652308f47
|
|
|
playwright-traces-job_e2e_playwright_tests-react-17
Expired
|
24.5 KB |
sha256:34bbb19018ffbe6511faba867fbcffcb781d60ef97268c9710cce5c1deeeeebd
|
|
|
playwright-traces-job_e2e_playwright_tests-react-create-browser-router
Expired
|
12.8 KB |
sha256:bfa2c06991fbf48683c97cb976f72ac677c22cfdcae7d99e6d785f77b686ee07
|
|
|
playwright-traces-job_e2e_playwright_tests-react-create-hash-router
Expired
|
35.4 KB |
sha256:7ba2e6eb74d54b14c48dbe7bdf1183458d004264f4fd6d9dbc1008156a248f82
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-6
Expired
|
23.7 KB |
sha256:7bf412eaabeb64da73899076fface7b93a7c2e4c0fb13ad1ce780cf3ea084955
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-7-framework
Expired
|
41.4 KB |
sha256:0389aa0f09b7f72b13442b187e3675111bd267e4366726c0d2f1f8a973f320d6
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-7-framework-custom
Expired
|
39.2 KB |
sha256:9f2ffaccc6c080dcea388f4018c2ae96ff4f5516c887ef5d7b95f6274b0cf8f1
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-7-framework-node-20-18
Expired
|
39.2 KB |
sha256:f4036dd5a2f5e1876eeda90990d8b9a0cfce18afa2dfb0cff4b04db41d7eef7b
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-7-framework-spa
Expired
|
39.2 KB |
sha256:565b1a78172d50ce8fcd26cdef7062af1ac7c162b31863ded237c30119be6363
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-7-framework-spa-node-20-18
Expired
|
39.2 KB |
sha256:1a0e2ff32b5aa8a4fd44b63cf213da734b2fbca8afe727a654ef381f31191d76
|
|
|
playwright-traces-job_e2e_playwright_tests-react-router-7-spa
Expired
|
22.1 KB |
sha256:e62328dd86235cd01916fd833eeb084e17630eb2ad6e6d75447a8b8e3b5ae88d
|
|
|
playwright-traces-job_e2e_playwright_tests-solid-tanstack-router
Expired
|
206 KB |
sha256:2d58097e3d27d9b2a6e3603f3b09256549136992a4c677e044167c011ab6572e
|
|
|
playwright-traces-job_e2e_playwright_tests-tanstack-router
Expired
|
12.7 KB |
sha256:c9028a4ad5aee8d6cca72f2b57a4c994c6d406cc5c0d86146b1f3914527b1be9
|
|
|
playwright-traces-job_e2e_playwright_tests-vue-tanstack-router
Expired
|
19.1 KB |
sha256:ae2ab76e3781abf79a03ccd9b726c2e86b6fdc6790fa91db6157ef7d268d293d
|
|