feat(core): Send sentry.is_localhost on every streamed span
#58520
build.yml
on: pull_request
Get CI Metadata
/
Get Metadata
7s
Check PR branches
3s
Matrix: job_bundler_plugin_integration_tests
Matrix: job_node_integration_tests
Matrix: job_node_unit_tests
Lint
1m 39s
Circular Dependency Check
1m 31s
Browser Unit Tests
2m 22s
Bun Unit Tests
57s
Deno Unit Tests
1m 3s
Cloudflare Integration Tests
5m 17s
Bun Integration Tests
57s
Deno Integration Tests
1m 5s
Check for faulty .d.ts files
48s
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
6s
Annotations
88 errors, 1 warning, and 297 notices
|
E2E nestjs-with-submodules Test
Process completed with exit code 1.
|
|
[chromium] βΊ tests/spans.test.ts:190:5 βΊ API route trace includes exception filter span for global filter in module registered before Sentry:
../../_temp/test-application/tests/spans.test.ts#L204
4) [chromium] βΊ tests/spans.test.ts:190:5 βΊ API route trace includes exception filter span for global filter in module registered before Sentry
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
202 |
203 | const segmentSpan = spans.find(span => span.is_segment)!;
> 204 | expect(findSpan(spans, 'ExampleExceptionFilterRegisteredFirst')).toEqual(
| ^
205 | exceptionFilterSpan(segmentSpan, 'ExampleExceptionFilterRegisteredFirst'),
206 | );
207 | });
at /home/runner/work/_temp/test-application/tests/spans.test.ts:204:68
|
|
[chromium] βΊ tests/spans.test.ts:171:5 βΊ API route trace includes exception filter span for local filter in module registered after Sentry:
../../_temp/test-application/tests/spans.test.ts#L185
3) [chromium] βΊ tests/spans.test.ts:171:5 βΊ API route trace includes exception filter span for local filter in module registered after Sentry
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
183 |
184 | const segmentSpan = spans.find(span => span.is_segment)!;
> 185 | expect(findSpan(spans, 'LocalExampleExceptionFilter')).toEqual(
| ^
186 | exceptionFilterSpan(segmentSpan, 'LocalExampleExceptionFilter'),
187 | );
188 | });
at /home/runner/work/_temp/test-application/tests/spans.test.ts:185:58
|
|
[chromium] βΊ tests/spans.test.ts:157:5 βΊ API route trace includes exception filter span for global filter in module registered after Sentry:
../../_temp/test-application/tests/spans.test.ts#L168
2) [chromium] βΊ tests/spans.test.ts:157:5 βΊ API route trace includes exception filter span for global filter in module registered after Sentry
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
166 |
167 | const segmentSpan = spans.find(span => span.is_segment)!;
> 168 | expect(findSpan(spans, 'ExampleExceptionFilter')).toEqual(exceptionFilterSpan(segmentSpan, 'ExampleExceptionFilter'));
| ^
169 | });
170 |
171 | test('API route trace includes exception filter span for local filter in module registered after Sentry', async ({
at /home/runner/work/_temp/test-application/tests/spans.test.ts:168:53
|
|
[chromium] βΊ tests/spans.test.ts:71:5 βΊ Sends streamed spans for an API route from module:
../../_temp/test-application/tests/spans.test.ts#L110
1) [chromium] βΊ tests/spans.test.ts:71:5 βΊ Sends streamed spans for an API route from module βββββ
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -14,10 +14,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "handler",
},
"sentry.origin": Object {
108 | });
109 |
> 110 | expect(findSpan(spans, '/example-module/transaction')).toEqual({
| ^
111 | name: '/example-module/transaction',
112 | span_id: expect.stringMatching(SPAN_ID),
113 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:110:58
|
|
[chromium] βΊ tests/spans.test.ts:339:1 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L354
10) [chromium] βΊ tests/spans.test.ts:339:1 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
352 |
353 | const asyncInterceptorSpan = findSpan(spans, 'AsyncInterceptor');
> 354 | expect(asyncInterceptorSpan).toEqual(
| ^
355 | nestMiddlewareSpan(segmentSpan, 'AsyncInterceptor', 'auto.middleware.nestjs.interceptor'),
356 | );
357 |
at /home/runner/work/_temp/test-application/tests/spans.test.ts:354:32
|
|
[chromium] βΊ tests/spans.test.ts:311:1 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L326
9) [chromium] βΊ tests/spans.test.ts:311:1 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
324 |
325 | const interceptorSpanAfterRoute = interceptorSpansAfterRoute[0]!;
> 326 | expect(interceptorSpanAfterRoute).toEqual(
| ^
327 | nestMiddlewareSpan(segmentSpan, 'Interceptors - After Route', 'auto.middleware.nestjs.interceptor'),
328 | );
329 |
at /home/runner/work/_temp/test-application/tests/spans.test.ts:326:37
|
|
[chromium] βΊ tests/spans.test.ts:275:1 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L288
8) [chromium] βΊ tests/spans.test.ts:275:1 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
286 | const exampleInterceptor1Span = findSpan(spans, 'ExampleInterceptor1');
287 | const exampleInterceptor2Span = findSpan(spans, 'ExampleInterceptor2');
> 288 | expect(exampleInterceptor1Span).toEqual(
| ^
289 | nestMiddlewareSpan(segmentSpan, 'ExampleInterceptor1', 'auto.middleware.nestjs.interceptor'),
290 | );
291 | expect(exampleInterceptor2Span).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:288:35
|
|
[chromium] βΊ tests/spans.test.ts:241:1 βΊ API route trace includes nest pipe span for invalid request:
../../_temp/test-application/tests/spans.test.ts#L257
7) [chromium] βΊ tests/spans.test.ts:241:1 βΊ API route trace includes nest pipe span for invalid request
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
255 | // Streamed spans only distinguish `ok` from `error`; the detailed status lives in
256 | // `sentry.status.message`.
> 257 | expect(findSpan(spans, 'ParseIntPipe')).toEqual({
| ^
258 | name: 'ParseIntPipe',
259 | span_id: expect.stringMatching(SPAN_ID),
260 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:257:43
|
|
[chromium] βΊ tests/spans.test.ts:221:1 βΊ API route trace includes nest pipe span for valid request:
../../_temp/test-application/tests/spans.test.ts#L236
6) [chromium] βΊ tests/spans.test.ts:221:1 βΊ API route trace includes nest pipe span for valid request
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
234 | const segmentSpan = spans.find(span => span.is_segment)!;
235 |
> 236 | expect(findSpan(spans, 'ParseIntPipe')).toEqual(
| ^
237 | nestMiddlewareSpan(segmentSpan, 'ParseIntPipe', 'auto.middleware.nestjs.pipe'),
238 | );
239 | });
at /home/runner/work/_temp/test-application/tests/spans.test.ts:236:43
|
|
[chromium] βΊ tests/spans.test.ts:203:1 βΊ API route trace includes nest guard span and span started in guard is nested correctly:
../../_temp/test-application/tests/spans.test.ts#L213
5) [chromium] βΊ tests/spans.test.ts:203:1 βΊ API route trace includes nest guard span and span started in guard is nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
211 |
212 | const exampleGuardSpan = findSpan(spans, 'ExampleGuard');
> 213 | expect(exampleGuardSpan).toEqual(nestMiddlewareSpan(segmentSpan, 'ExampleGuard', 'auto.middleware.nestjs.guard'));
| ^
214 |
215 | // 'ExampleGuard' is the parent of 'test-guard-span'
216 | expect(findSpan(spans, 'test-guard-span')).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:213:28
|
|
[chromium] βΊ tests/spans.test.ts:177:1 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L189
4) [chromium] βΊ tests/spans.test.ts:177:1 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
187 |
188 | const exampleMiddlewareSpan = findSpan(spans, 'ExampleMiddleware');
> 189 | expect(exampleMiddlewareSpan).toEqual(nestMiddlewareSpan(segmentSpan, 'ExampleMiddleware', 'auto.middleware.nestjs'));
| ^
190 |
191 | // 'ExampleMiddleware' is the parent of 'test-middleware-span'
192 | expect(findSpan(spans, 'test-middleware-span')).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:189:33
|
|
[chromium] βΊ tests/spans.test.ts:91:1 βΊ Sends streamed spans for an API route:
../../_temp/test-application/tests/spans.test.ts#L130
3) [chromium] βΊ tests/spans.test.ts:91:1 βΊ Sends streamed spans for an API route βββββββββββββββββ
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -14,10 +14,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "handler",
},
"sentry.origin": Object {
128 | });
129 |
> 130 | expect(findSpan(spans, '/test-transaction')).toEqual({
| ^
131 | name: '/test-transaction',
132 | span_id: expect.stringMatching(SPAN_ID),
133 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:130:48
|
|
[chromium] βΊ tests/span-decorator.test.ts:53:1 βΊ Trace includes span and correct value for decorated sync function:
../../_temp/test-application/tests/span-decorator.test.ts#L64
2) [chromium] βΊ tests/span-decorator.test.ts:53:1 βΊ Trace includes span and correct value for decorated sync function
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -6,10 +6,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "return a string",
},
"sentry.origin": Object {
62 |
63 | const segmentSpan = spans.find(span => span.is_segment)!;
> 64 | expect(spans.find(span => span.name === 'getString')).toEqual(
| ^
65 | tracedSpan(segmentSpan, 'getString', 'return a string'),
66 | );
67 | });
at /home/runner/work/_temp/test-application/tests/span-decorator.test.ts:64:57
|
|
[chromium] βΊ tests/span-decorator.test.ts:39:1 βΊ Trace includes span and correct value for decorated async function:
../../_temp/test-application/tests/span-decorator.test.ts#L50
1) [chromium] βΊ tests/span-decorator.test.ts:39:1 βΊ Trace includes span and correct value for decorated async function
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -6,10 +6,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "wait and return a string",
},
"sentry.origin": Object {
48 |
49 | const segmentSpan = spans.find(span => span.is_segment)!;
> 50 | expect(spans.find(span => span.name === 'wait')).toEqual(tracedSpan(segmentSpan, 'wait', 'wait and return a string'));
| ^
51 | });
52 |
53 | test('Trace includes span and correct value for decorated sync function', async ({ baseURL }) => {
at /home/runner/work/_temp/test-application/tests/span-decorator.test.ts:50:52
|
|
[chromium] βΊ tests/spans.test.ts:368:5 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L383
10) [chromium] βΊ tests/spans.test.ts:368:5 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
381 |
382 | const asyncInterceptorSpan = findSpan(spans, 'AsyncInterceptor');
> 383 | expect(asyncInterceptorSpan).toEqual(
| ^
384 | nestMiddlewareSpan(segmentSpan, 'AsyncInterceptor', 'auto.middleware.nestjs.interceptor'),
385 | );
386 |
at /home/runner/work/_temp/test-application/tests/spans.test.ts:383:32
|
|
[chromium] βΊ tests/spans.test.ts:340:5 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L355
9) [chromium] βΊ tests/spans.test.ts:340:5 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
353 |
354 | const interceptorSpanAfterRoute = interceptorSpansAfterRoute[0]!;
> 355 | expect(interceptorSpanAfterRoute).toEqual(
| ^
356 | nestMiddlewareSpan(segmentSpan, 'Interceptors - After Route', 'auto.middleware.nestjs.interceptor'),
357 | );
358 |
at /home/runner/work/_temp/test-application/tests/spans.test.ts:355:37
|
|
[chromium] βΊ tests/spans.test.ts:304:5 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L317
8) [chromium] βΊ tests/spans.test.ts:304:5 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
315 | const exampleInterceptor1Span = findSpan(spans, 'ExampleInterceptor1');
316 | const exampleInterceptor2Span = findSpan(spans, 'ExampleInterceptor2');
> 317 | expect(exampleInterceptor1Span).toEqual(
| ^
318 | nestMiddlewareSpan(segmentSpan, 'ExampleInterceptor1', 'auto.middleware.nestjs.interceptor'),
319 | );
320 | expect(exampleInterceptor2Span).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:317:35
|
|
[chromium] βΊ tests/spans.test.ts:270:5 βΊ API route trace includes nest pipe span for invalid request:
../../_temp/test-application/tests/spans.test.ts#L286
7) [chromium] βΊ tests/spans.test.ts:270:5 βΊ API route trace includes nest pipe span for invalid request
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
284 | // Streamed spans only distinguish `ok` from `error`; the detailed status lives in
285 | // `sentry.status.message`.
> 286 | expect(findSpan(spans, 'ParseIntPipe')).toEqual({
| ^
287 | name: 'ParseIntPipe',
288 | span_id: expect.stringMatching(SPAN_ID),
289 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:286:43
|
|
[chromium] βΊ tests/spans.test.ts:250:5 βΊ API route trace includes nest pipe span for valid request:
../../_temp/test-application/tests/spans.test.ts#L265
6) [chromium] βΊ tests/spans.test.ts:250:5 βΊ API route trace includes nest pipe span for valid request
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
263 | const segmentSpan = spans.find(span => span.is_segment)!;
264 |
> 265 | expect(findSpan(spans, 'ParseIntPipe')).toEqual(
| ^
266 | nestMiddlewareSpan(segmentSpan, 'ParseIntPipe', 'auto.middleware.nestjs.pipe'),
267 | );
268 | });
at /home/runner/work/_temp/test-application/tests/spans.test.ts:265:43
|
|
[chromium] βΊ tests/spans.test.ts:232:5 βΊ API route trace includes nest guard span and span started in guard is nested correctly:
../../_temp/test-application/tests/spans.test.ts#L242
5) [chromium] βΊ tests/spans.test.ts:232:5 βΊ API route trace includes nest guard span and span started in guard is nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
240 |
241 | const exampleGuardSpan = findSpan(spans, 'ExampleGuard');
> 242 | expect(exampleGuardSpan).toEqual(nestMiddlewareSpan(segmentSpan, 'ExampleGuard', 'auto.middleware.nestjs.guard'));
| ^
243 |
244 | // 'ExampleGuard' is the parent of 'test-guard-span'
245 | expect(findSpan(spans, 'test-guard-span')).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:242:28
|
|
[chromium] βΊ tests/spans.test.ts:206:5 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L218
4) [chromium] βΊ tests/spans.test.ts:206:5 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
216 |
217 | const exampleMiddlewareSpan = findSpan(spans, 'ExampleMiddleware');
> 218 | expect(exampleMiddlewareSpan).toEqual(nestMiddlewareSpan(segmentSpan, 'ExampleMiddleware', 'auto.middleware.nestjs'));
| ^
219 |
220 | // 'ExampleMiddleware' is the parent of 'test-middleware-span'
221 | expect(findSpan(spans, 'test-middleware-span')).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:218:33
|
|
[chromium] βΊ tests/spans.test.ts:120:5 βΊ Sends streamed spans for an API route:
../../_temp/test-application/tests/spans.test.ts#L159
3) [chromium] βΊ tests/spans.test.ts:120:5 βΊ Sends streamed spans for an API route ββββββββββββββββ
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -14,10 +14,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "handler",
},
"sentry.origin": Object {
157 | });
158 |
> 159 | expect(findSpan(spans, '/test-transaction')).toEqual({
| ^
160 | name: '/test-transaction',
161 | span_id: expect.stringMatching(SPAN_ID),
162 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:159:48
|
|
[chromium] βΊ tests/span-decorator.test.ts:53:5 βΊ Trace includes span and correct value for decorated sync function:
../../_temp/test-application/tests/span-decorator.test.ts#L64
2) [chromium] βΊ tests/span-decorator.test.ts:53:5 βΊ Trace includes span and correct value for decorated sync function
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -6,10 +6,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "return a string",
},
"sentry.origin": Object {
62 |
63 | const segmentSpan = spans.find(span => span.is_segment)!;
> 64 | expect(spans.find(span => span.name === 'getString')).toEqual(
| ^
65 | tracedSpan(segmentSpan, 'getString', 'return a string'),
66 | );
67 | });
at /home/runner/work/_temp/test-application/tests/span-decorator.test.ts:64:57
|
|
[chromium] βΊ tests/span-decorator.test.ts:39:5 βΊ Trace includes span and correct value for decorated async function:
../../_temp/test-application/tests/span-decorator.test.ts#L50
1) [chromium] βΊ tests/span-decorator.test.ts:39:5 βΊ Trace includes span and correct value for decorated async function
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -6,10 +6,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "wait and return a string",
},
"sentry.origin": Object {
48 |
49 | const segmentSpan = spans.find(span => span.is_segment)!;
> 50 | expect(spans.find(span => span.name === 'wait')).toEqual(tracedSpan(segmentSpan, 'wait', 'wait and return a string'));
| ^
51 | });
52 |
53 | test('Trace includes span and correct value for decorated sync function', async ({ baseURL }) => {
at /home/runner/work/_temp/test-application/tests/span-decorator.test.ts:50:52
|
|
E2E deno (latest) Test (optional)
Process completed with exit code 1.
|
|
[chromium] βΊ tests/streamed/transactions.test.ts:261:5 βΊ OTel span appears as child of Sentry span (interop):
../../_temp/test-application/tests/streamed/transactions.test.ts#L271
2) [chromium] βΊ tests/streamed/transactions.test.ts:261:5 βΊ OTel span appears as child of Sentry span (interop)
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -98,10 +98,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "http.server",
},
"sentry.origin": Object {
269 |
270 | const httpServerSpan = spans.find(span => span.is_segment);
> 271 | expect(httpServerSpan).toEqual({
| ^
272 | ...SEGMENT_SPAN,
273 | attributes: {
274 | ...SEGMENT_SPAN.attributes,
at /home/runner/work/_temp/test-application/tests/streamed/transactions.test.ts:271:26
|
|
[chromium] βΊ tests/streamed/transactions.test.ts:197:5 βΊ Sends streamed spans (http.server and manual with Sentry.startSpan):
../../_temp/test-application/tests/streamed/transactions.test.ts#L206
1) [chromium] βΊ tests/streamed/transactions.test.ts:197:5 βΊ Sends streamed spans (http.server and manual with Sentry.startSpan)
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -98,10 +98,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "http.server",
},
"sentry.origin": Object {
204 |
205 | const httpServerSpan = spans.find(span => span.is_segment);
> 206 | expect(httpServerSpan).toEqual(SEGMENT_SPAN);
| ^
207 |
208 | const sentrySpan = spans.find(span => span.name === 'test-sentry-span');
209 | expect(sentrySpan).toEqual({
at /home/runner/work/_temp/test-application/tests/streamed/transactions.test.ts:206:26
|
|
[chromium] βΊ tests/spans.test.ts:368:5 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L383
10) [chromium] βΊ tests/spans.test.ts:368:5 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
381 |
382 | const asyncInterceptorSpan = findSpan(spans, 'AsyncInterceptor');
> 383 | expect(asyncInterceptorSpan).toEqual(
| ^
384 | nestMiddlewareSpan(segmentSpan, 'AsyncInterceptor', 'auto.middleware.nestjs.interceptor'),
385 | );
386 |
at /home/runner/work/_temp/test-application/tests/spans.test.ts:383:32
|
|
[chromium] βΊ tests/spans.test.ts:340:5 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L355
9) [chromium] βΊ tests/spans.test.ts:340:5 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
353 |
354 | const interceptorSpanAfterRoute = interceptorSpansAfterRoute[0]!;
> 355 | expect(interceptorSpanAfterRoute).toEqual(
| ^
356 | nestMiddlewareSpan(segmentSpan, 'Interceptors - After Route', 'auto.middleware.nestjs.interceptor'),
357 | );
358 |
at /home/runner/work/_temp/test-application/tests/spans.test.ts:355:37
|
|
[chromium] βΊ tests/spans.test.ts:304:5 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L317
8) [chromium] βΊ tests/spans.test.ts:304:5 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
315 | const exampleInterceptor1Span = findSpan(spans, 'ExampleInterceptor1');
316 | const exampleInterceptor2Span = findSpan(spans, 'ExampleInterceptor2');
> 317 | expect(exampleInterceptor1Span).toEqual(
| ^
318 | nestMiddlewareSpan(segmentSpan, 'ExampleInterceptor1', 'auto.middleware.nestjs.interceptor'),
319 | );
320 | expect(exampleInterceptor2Span).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:317:35
|
|
[chromium] βΊ tests/spans.test.ts:270:5 βΊ API route trace includes nest pipe span for invalid request:
../../_temp/test-application/tests/spans.test.ts#L286
7) [chromium] βΊ tests/spans.test.ts:270:5 βΊ API route trace includes nest pipe span for invalid request
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
284 | // Streamed spans only distinguish `ok` from `error`; the detailed status lives in
285 | // `sentry.status.message`.
> 286 | expect(findSpan(spans, 'ParseIntPipe')).toEqual({
| ^
287 | name: 'ParseIntPipe',
288 | span_id: expect.stringMatching(SPAN_ID),
289 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:286:43
|
|
[chromium] βΊ tests/spans.test.ts:250:5 βΊ API route trace includes nest pipe span for valid request:
../../_temp/test-application/tests/spans.test.ts#L265
6) [chromium] βΊ tests/spans.test.ts:250:5 βΊ API route trace includes nest pipe span for valid request
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
263 | const segmentSpan = spans.find(span => span.is_segment)!;
264 |
> 265 | expect(findSpan(spans, 'ParseIntPipe')).toEqual(
| ^
266 | nestMiddlewareSpan(segmentSpan, 'ParseIntPipe', 'auto.middleware.nestjs.pipe'),
267 | );
268 | });
at /home/runner/work/_temp/test-application/tests/spans.test.ts:265:43
|
|
[chromium] βΊ tests/spans.test.ts:232:5 βΊ API route trace includes nest guard span and span started in guard is nested correctly:
../../_temp/test-application/tests/spans.test.ts#L242
5) [chromium] βΊ tests/spans.test.ts:232:5 βΊ API route trace includes nest guard span and span started in guard is nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
240 |
241 | const exampleGuardSpan = findSpan(spans, 'ExampleGuard');
> 242 | expect(exampleGuardSpan).toEqual(nestMiddlewareSpan(segmentSpan, 'ExampleGuard', 'auto.middleware.nestjs.guard'));
| ^
243 |
244 | // 'ExampleGuard' is the parent of 'test-guard-span'
245 | expect(findSpan(spans, 'test-guard-span')).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:242:28
|
|
[chromium] βΊ tests/spans.test.ts:206:5 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly:
../../_temp/test-application/tests/spans.test.ts#L218
4) [chromium] βΊ tests/spans.test.ts:206:5 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -2,10 +2,14 @@
"attributes": Object {
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "middleware",
},
"sentry.origin": Object {
216 |
217 | const exampleMiddlewareSpan = findSpan(spans, 'ExampleMiddleware');
> 218 | expect(exampleMiddlewareSpan).toEqual(nestMiddlewareSpan(segmentSpan, 'ExampleMiddleware', 'auto.middleware.nestjs'));
| ^
219 |
220 | // 'ExampleMiddleware' is the parent of 'test-middleware-span'
221 | expect(findSpan(spans, 'test-middleware-span')).toEqual(
at /home/runner/work/_temp/test-application/tests/spans.test.ts:218:33
|
|
[chromium] βΊ tests/spans.test.ts:120:5 βΊ Sends streamed spans for an API route:
../../_temp/test-application/tests/spans.test.ts#L159
3) [chromium] βΊ tests/spans.test.ts:120:5 βΊ Sends streamed spans for an API route ββββββββββββββββ
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -14,10 +14,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "handler",
},
"sentry.origin": Object {
157 | });
158 |
> 159 | expect(findSpan(spans, '/test-transaction')).toEqual({
| ^
160 | name: '/test-transaction',
161 | span_id: expect.stringMatching(SPAN_ID),
162 | trace_id: segmentSpan.trace_id,
at /home/runner/work/_temp/test-application/tests/spans.test.ts:159:48
|
|
[chromium] βΊ tests/span-decorator.test.ts:53:5 βΊ Trace includes span and correct value for decorated sync function:
../../_temp/test-application/tests/span-decorator.test.ts#L64
2) [chromium] βΊ tests/span-decorator.test.ts:53:5 βΊ Trace includes span and correct value for decorated sync function
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -6,10 +6,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "return a string",
},
"sentry.origin": Object {
62 |
63 | const segmentSpan = spans.find(span => span.is_segment)!;
> 64 | expect(spans.find(span => span.name === 'getString')).toEqual(
| ^
65 | tracedSpan(segmentSpan, 'getString', 'return a string'),
66 | );
67 | });
at /home/runner/work/_temp/test-application/tests/span-decorator.test.ts:64:57
|
|
[chromium] βΊ tests/span-decorator.test.ts:39:5 βΊ Trace includes span and correct value for decorated async function:
../../_temp/test-application/tests/span-decorator.test.ts#L50
1) [chromium] βΊ tests/span-decorator.test.ts:39:5 βΊ Trace includes span and correct value for decorated async function
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -6,10 +6,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "wait and return a string",
},
"sentry.origin": Object {
48 |
49 | const segmentSpan = spans.find(span => span.is_segment)!;
> 50 | expect(spans.find(span => span.name === 'wait')).toEqual(tracedSpan(segmentSpan, 'wait', 'wait and return a string'));
| ^
51 | });
52 |
53 | test('Trace includes span and correct value for decorated sync function', async ({ baseURL }) => {
at /home/runner/work/_temp/test-application/tests/span-decorator.test.ts:50:52
|
|
E2E deno Test
Process completed with exit code 1.
|
|
[chromium] βΊ tests/streamed/transactions.test.ts:261:5 βΊ OTel span appears as child of Sentry span (interop):
../../_temp/test-application/tests/streamed/transactions.test.ts#L271
2) [chromium] βΊ tests/streamed/transactions.test.ts:261:5 βΊ OTel span appears as child of Sentry span (interop)
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -98,10 +98,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "http.server",
},
"sentry.origin": Object {
269 |
270 | const httpServerSpan = spans.find(span => span.is_segment);
> 271 | expect(httpServerSpan).toEqual({
| ^
272 | ...SEGMENT_SPAN,
273 | attributes: {
274 | ...SEGMENT_SPAN.attributes,
at /home/runner/work/_temp/test-application/tests/streamed/transactions.test.ts:271:26
|
|
[chromium] βΊ tests/streamed/transactions.test.ts:197:5 βΊ Sends streamed spans (http.server and manual with Sentry.startSpan):
../../_temp/test-application/tests/streamed/transactions.test.ts#L206
1) [chromium] βΊ tests/streamed/transactions.test.ts:197:5 βΊ Sends streamed spans (http.server and manual with Sentry.startSpan)
Error: expect(received).toEqual(expected) // deep equality
- Expected - 0
+ Received + 4
@@ -98,10 +98,14 @@
},
"sentry.environment": Object {
"type": "string",
"value": "qa",
},
+ "sentry.is_localhost": Object {
+ "type": "boolean",
+ "value": true,
+ },
"sentry.op": Object {
"type": "string",
"value": "http.server",
},
"sentry.origin": Object {
204 |
205 | const httpServerSpan = spans.find(span => span.is_segment);
> 206 | expect(httpServerSpan).toEqual(SEGMENT_SPAN);
| ^
207 |
208 | const sentrySpan = spans.find(span => span.name === 'test-sentry-span');
209 | expect(sentrySpan).toEqual({
at /home/runner/work/_temp/test-application/tests/streamed/transactions.test.ts:206:26
|
|
Playwright bundle Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_replay Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_logs_metrics Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay_logs_metrics Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_replay_logs_metrics Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_min Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay_feedback_logs_metrics_min webkit Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay_feedback Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_logs_metrics Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay_feedback_logs_metrics_min firefox Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright esm (1/4) Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay_feedback_logs_metrics_min Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright esm (2/4) Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright esm (3/4) Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright esm (4/4) Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
PW loader_debug Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Node (20.19) Unit Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Size Check
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Size Check
The operation was canceled.
|
|
PW loader_base Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
PW loader_base Tests
The operation was canceled.
|
|
PW loader_tracing Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
PW loader_tracing Tests
The operation was canceled.
|
|
PW loader_replay Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
PW loader_replay Tests
The operation was canceled.
|
|
PW loader_tracing_replay Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
PW loader_tracing_replay Tests
The operation was canceled.
|
|
PW loader_replay_buffer Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
PW loader_replay_buffer Tests
The operation was canceled.
|
|
Playwright bundle_tracing_replay_feedback_logs_metrics Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Playwright bundle_tracing_replay_feedback_logs_metrics Tests
The operation was canceled.
|
|
Node (22) Integration Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Node (22) Integration Tests
The operation was canceled.
|
|
Node (26) Integration Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Node (26) Integration Tests
The operation was canceled.
|
|
Cloudflare Integration Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Cloudflare Integration Tests
The operation was canceled.
|
|
Node (20.19) Integration Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Node (20.19) Integration Tests
The operation was canceled.
|
|
Node (24) Integration Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Node (24) Integration Tests
The operation was canceled.
|
|
Node (24) (TS 5.0) Integration Tests
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
Node (24) (TS 5.0) Integration Tests
The operation was canceled.
|
|
All required jobs passed or were skipped
Process completed with exit code 1.
|
|
CI: Build & Test
Canceling since a higher priority waiting request for CI: Build & Test-lms/feat-core-is_localhost-attribute exists
|
|
E2E hono-4 (bun) Test
Failed to restore: Failed to GetCacheEntryDownloadURL: Unable to make request: ECONNRESET
If you are using self-hosted runners, please make sure your runner has access to all GitHub endpoints: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#communication-between-self-hosted-runners-and-github
|
|
π Playwright Run Summary
1 passed (1.9s)
|
|
π Playwright Run Summary
1 skipped
19 passed (8.7s)
|
|
π Playwright Run Summary
4 passed (9.3s)
|
|
π Playwright Run Summary
9 passed (1.8s)
|
|
π Playwright Run Summary
9 passed (2.8s)
|
|
π Playwright Run Summary
4 passed (7.4s)
|
|
π Playwright Run Summary
2 skipped
10 passed (6.6s)
|
|
π Playwright Run Summary
2 skipped
10 passed (6.4s)
|
|
π Playwright Run Summary
8 passed (7.2s)
|
|
π Playwright Run Summary
5 passed (13.6s)
|
|
π Playwright Run Summary
7 passed (9.7s)
|
|
π Playwright Run Summary
4 passed (7.0s)
|
|
π Playwright Run Summary
16 passed (10.6s)
|
|
π Playwright Run Summary
7 passed (4.6s)
|
|
π Playwright Run Summary
2 skipped
14 passed (16.9s)
|
|
π Playwright Run Summary
22 passed (19.9s)
|
|
π Playwright Run Summary
7 passed (3.3s)
|
|
π Playwright Run Summary
23 passed (22.2s)
|
|
π Playwright Run Summary
4 passed (3.4s)
|
|
π Playwright Run Summary
15 passed (9.4s)
|
|
π Playwright Run Summary
1 skipped
73 passed (13.9s)
|
|
π Playwright Run Summary
2 passed (3.6s)
|
|
π Playwright Run Summary
11 skipped
2 passed (3.8s)
|
|
π Playwright Run Summary
4 failed
[chromium] βΊ tests/spans.test.ts:71:5 βΊ Sends streamed spans for an API route from module ββββββ
[chromium] βΊ tests/spans.test.ts:157:5 βΊ API route trace includes exception filter span for global filter in module registered after Sentry
[chromium] βΊ tests/spans.test.ts:171:5 βΊ API route trace includes exception filter span for local filter in module registered after Sentry
[chromium] βΊ tests/spans.test.ts:190:5 βΊ API route trace includes exception filter span for global filter in module registered before Sentry
8 passed (13.2s)
|
|
π Playwright Run Summary
11 passed (11.5s)
|
|
π Playwright Run Summary
4 passed (4.9s)
|
|
π Playwright Run Summary
1 passed (3.3s)
|
|
π Playwright Run Summary
5 passed (9.0s)
|
|
π Playwright Run Summary
1 passed (4.6s)
|
|
π Playwright Run Summary
1 skipped
73 passed (14.5s)
|
|
π Playwright Run Summary
12 passed (11.3s)
|
|
π Playwright Run Summary
9 passed (14.2s)
|
|
π Playwright Run Summary
2 passed (15.9s)
|
|
π Playwright Run Summary
5 passed (10.2s)
|
|
π Playwright Run Summary
1 passed (5.8s)
|
|
π Playwright Run Summary
3 passed (4.0s)
|
|
π Playwright Run Summary
1 skipped
19 passed (2.1s)
|
|
π Playwright Run Summary
11 passed (11.5s)
|
|
π Playwright Run Summary
11 passed (7.0s)
|
|
π Playwright Run Summary
3 passed (4.9s)
|
|
π Playwright Run Summary
7 passed (21.0s)
|
|
π Playwright Run Summary
5 passed (7.1s)
|
|
π Playwright Run Summary
1 passed (4.8s)
|
|
π Playwright Run Summary
4 passed (3.4s)
|
|
π Playwright Run Summary
11 passed (20.5s)
|
|
π Playwright Run Summary
3 skipped
17 passed (7.0s)
|
|
π Playwright Run Summary
6 passed (14.4s)
|
|
π Playwright Run Summary
8 skipped
6 passed (13.3s)
|
|
π Playwright Run Summary
16 passed (18.5s)
|
|
π Playwright Run Summary
1 passed (2.9s)
|
|
π Playwright Run Summary
8 passed (11.7s)
|
|
π Playwright Run Summary
1 passed (6.0s)
|
|
π Playwright Run Summary
5 passed (6.8s)
|
|
π Playwright Run Summary
9 passed (12.0s)
|
|
π Playwright Run Summary
2 passed (5.1s)
|
|
π Playwright Run Summary
13 passed (30.0s)
|
|
π Playwright Run Summary
2 passed (4.7s)
|
|
π Playwright Run Summary
2 passed (4.1s)
|
|
π Playwright Run Summary
2 passed (4.1s)
|
|
π Playwright Run Summary
4 passed (32.9s)
|
|
π Playwright Run Summary
10 passed (12.9s)
|
|
π Playwright Run Summary
3 passed (16.7s)
|
|
π Playwright Run Summary
3 passed (11.9s)
|
|
π Playwright Run Summary
10 passed (10.3s)
|
|
π Playwright Run Summary
10 passed (19.0s)
|
|
π Playwright Run Summary
8 passed (10.2s)
|
|
π Playwright Run Summary
6 passed (13.3s)
|
|
π Playwright Run Summary
3 passed (6.9s)
|
|
π Playwright Run Summary
11 passed (9.4s)
|
|
π Playwright Run Summary
11 passed (11.3s)
|
|
π Playwright Run Summary
1 passed (3.1s)
|
|
π Playwright Run Summary
1 passed (4.3s)
|
|
π Playwright Run Summary
3 passed (5.3s)
|
|
π Playwright Run Summary
9 passed (15.3s)
|
|
π Playwright Run Summary
8 passed (12.7s)
|
|
π Playwright Run Summary
4 passed (7.7s)
|
|
π Playwright Run Summary
3 passed (15.3s)
|
|
π Playwright Run Summary
3 passed (13.8s)
|
|
π Playwright Run Summary
10 passed (4.5s)
|
|
π Playwright Run Summary
10 passed (4.8s)
|
|
π Playwright Run Summary
5 passed (8.9s)
|
|
π Playwright Run Summary
2 passed (33.1s)
|
|
π Playwright Run Summary
25 passed (20.5s)
|
|
π Playwright Run Summary
12 passed (17.2s)
|
|
π Playwright Run Summary
12 passed (17.3s)
|
|
π Playwright Run Summary
4 passed (10.5s)
|
|
π Playwright Run Summary
10 passed (9.6s)
|
|
π Playwright Run Summary
11 passed (11.2s)
|
|
π Playwright Run Summary
4 skipped
10 passed (17.3s)
|
|
π Playwright Run Summary
12 passed (8.0s)
|
|
π Playwright Run Summary
15 passed (19.2s)
|
|
π Playwright Run Summary
5 passed (10.9s)
|
|
π Playwright Run Summary
13 passed (42.2s)
|
|
π Playwright Run Summary
1 skipped
12 passed (27.9s)
|
|
π Playwright Run Summary
23 passed (15.9s)
|
|
π Playwright Run Summary
4 passed (10.6s)
|
|
π Playwright Run Summary
7 passed (9.8s)
|
|
π Playwright Run Summary
1 skipped
16 passed (32.7s)
|
|
π Playwright Run Summary
16 passed (20.3s)
|
|
π Playwright Run Summary
11 passed (20.9s)
|
|
π Playwright Run Summary
16 passed (10.7s)
|
|
π Playwright Run Summary
5 passed (12.0s)
|
|
π Playwright Run Summary
12 passed (39.7s)
|
|
π Playwright Run Summary
4 passed (3.4s)
|
|
π Playwright Run Summary
3 passed (7.6s)
|
|
π Playwright Run Summary
4 passed (20.8s)
|
|
π Playwright Run Summary
4 passed (12.2s)
|
|
π Playwright Run Summary
12 passed (40.6s)
|
|
π Playwright Run Summary
11 failed
[chromium] βΊ tests/span-decorator.test.ts:39:1 βΊ Trace includes span and correct value for decorated async function
[chromium] βΊ tests/span-decorator.test.ts:53:1 βΊ Trace includes span and correct value for decorated sync function
[chromium] βΊ tests/spans.test.ts:91:1 βΊ Sends streamed spans for an API route ββββββββββββββββββ
[chromium] βΊ tests/spans.test.ts:177:1 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly
[chromium] βΊ tests/spans.test.ts:203:1 βΊ API route trace includes nest guard span and span started in guard is nested correctly
[chromium] βΊ tests/spans.test.ts:221:1 βΊ API route trace includes nest pipe span for valid request
[chromium] βΊ tests/spans.test.ts:241:1 βΊ API route trace includes nest pipe span for invalid request
[chromium] βΊ tests/spans.test.ts:275:1 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:311:1 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:339:1 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:370:1 βΊ API route trace includes exactly one nest async interceptor span after route execution. Spans created in controller and in async interceptor are nested correctly
12 passed (28.1s)
|
|
π Playwright Run Summary
10 passed (41.3s)
|
|
π Playwright Run Summary
1 skipped
73 passed (15.6s)
|
|
π Playwright Run Summary
6 passed (15.2s)
|
|
π Playwright Run Summary
13 passed (43.5s)
|
|
π Playwright Run Summary
3 passed (6.9s)
|
|
π Playwright Run Summary
14 passed (42.6s)
|
|
π Playwright Run Summary
4 passed (20.7s)
|
|
π Playwright Run Summary
4 passed (11.2s)
|
|
π Playwright Run Summary
14 passed (40.6s)
|
|
π Playwright Run Summary
9 passed (11.4s)
|
|
π Playwright Run Summary
2 skipped
7 passed (32.9s)
|
|
π Playwright Run Summary
5 passed (11.5s)
|
|
π Playwright Run Summary
11 failed
[chromium] βΊ tests/span-decorator.test.ts:39:5 βΊ Trace includes span and correct value for decorated async function
[chromium] βΊ tests/span-decorator.test.ts:53:5 βΊ Trace includes span and correct value for decorated sync function
[chromium] βΊ tests/spans.test.ts:120:5 βΊ Sends streamed spans for an API route βββββββββββββββββ
[chromium] βΊ tests/spans.test.ts:206:5 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly
[chromium] βΊ tests/spans.test.ts:232:5 βΊ API route trace includes nest guard span and span started in guard is nested correctly
[chromium] βΊ tests/spans.test.ts:250:5 βΊ API route trace includes nest pipe span for valid request
[chromium] βΊ tests/spans.test.ts:270:5 βΊ API route trace includes nest pipe span for invalid request
[chromium] βΊ tests/spans.test.ts:304:5 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:340:5 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:368:5 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:399:5 βΊ API route trace includes exactly one nest async interceptor span after route execution. Spans created in controller and in async interceptor are nested correctly
19 passed (40.6s)
|
|
π Playwright Run Summary
12 passed (37.4s)
|
|
π Playwright Run Summary
4 passed (3.5s)
|
|
π Playwright Run Summary
8 passed (15.9s)
|
|
π Playwright Run Summary
5 passed (12.0s)
|
|
π Playwright Run Summary
9 passed (37.6s)
|
|
π Playwright Run Summary
15 passed (30.4s)
|
|
π Playwright Run Summary
1 skipped
11 passed (23.7s)
|
|
π Playwright Run Summary
12 passed (8.8s)
|
|
π Playwright Run Summary
5 passed (12.8s)
|
|
π Playwright Run Summary
2 passed (32.6s)
|
|
π Playwright Run Summary
12 passed (39.7s)
|
|
π Playwright Run Summary
21 skipped
2 passed (3.0s)
|
|
π Playwright Run Summary
2 passed (29.4s)
|
|
π Playwright Run Summary
2 failed
[chromium] βΊ tests/streamed/transactions.test.ts:197:5 βΊ Sends streamed spans (http.server and manual with Sentry.startSpan)
[chromium] βΊ tests/streamed/transactions.test.ts:261:5 βΊ OTel span appears as child of Sentry span (interop)
23 passed (54.1s)
|
|
π Playwright Run Summary
13 passed (34.8s)
|
|
π Playwright Run Summary
10 passed (28.5s)
|
|
π Playwright Run Summary
3 passed (18.3s)
|
|
π Playwright Run Summary
3 passed (11.8s)
|
|
π Playwright Run Summary
9 passed (12.4s)
|
|
π Playwright Run Summary
4 passed (12.6s)
|
|
π Playwright Run Summary
4 passed (12.6s)
|
|
π Playwright Run Summary
6 passed (45.0s)
|
|
π Playwright Run Summary
10 passed (19.9s)
|
|
π Playwright Run Summary
19 passed (12.7s)
|
|
π Playwright Run Summary
13 passed (43.7s)
|
|
π Playwright Run Summary
16 skipped
12 passed (27.6s)
|
|
π Playwright Run Summary
4 passed (3.5s)
|
|
π Playwright Run Summary
53 passed (35.2s)
|
|
π Playwright Run Summary
1 passed (4.9s)
|
|
π Playwright Run Summary
3 passed (22.1s)
|
|
π Playwright Run Summary
3 passed (14.0s)
|
|
π Playwright Run Summary
22 passed (45.6s)
|
|
π Playwright Run Summary
11 failed
[chromium] βΊ tests/span-decorator.test.ts:39:5 βΊ Trace includes span and correct value for decorated async function
[chromium] βΊ tests/span-decorator.test.ts:53:5 βΊ Trace includes span and correct value for decorated sync function
[chromium] βΊ tests/spans.test.ts:120:5 βΊ Sends streamed spans for an API route βββββββββββββββββ
[chromium] βΊ tests/spans.test.ts:206:5 βΊ API route trace includes nest middleware span. Spans created in and after middleware are nested correctly
[chromium] βΊ tests/spans.test.ts:232:5 βΊ API route trace includes nest guard span and span started in guard is nested correctly
[chromium] βΊ tests/spans.test.ts:250:5 βΊ API route trace includes nest pipe span for valid request
[chromium] βΊ tests/spans.test.ts:270:5 βΊ API route trace includes nest pipe span for invalid request
[chromium] βΊ tests/spans.test.ts:304:5 βΊ API route trace includes nest interceptor spans before route execution. Spans created in and after interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:340:5 βΊ API route trace includes exactly one nest interceptor span after route execution. Spans created in controller and in interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:368:5 βΊ API route trace includes nest async interceptor spans before route execution. Spans created in and after async interceptor are nested correctly
[chromium] βΊ tests/spans.test.ts:399:5 βΊ API route trace includes exactly one nest async interceptor span after route execution. Spans created in controller and in async interceptor are nested correctly
19 passed (44.2s)
|
|
π Playwright Run Summary
21 skipped
2 passed (3.8s)
|
|
π Playwright Run Summary
14 passed (31.0s)
|
|
π Playwright Run Summary
22 passed (45.8s)
|
|
π Playwright Run Summary
21 skipped
2 passed (5.2s)
|
|
π Playwright Run Summary
12 passed (22.7s)
|
|
π Playwright Run Summary
15 passed (1.2m)
|
|
π Playwright Run Summary
4 passed (30.8s)
|
|
π Playwright Run Summary
4 passed (8.8s)
|
|
π Playwright Run Summary
17 passed (30.3s)
|
|
π Playwright Run Summary
5 passed (16.4s)
|
|
π Playwright Run Summary
40 passed (34.9s)
|
|
π Playwright Run Summary
9 passed (32.4s)
|
|
π Playwright Run Summary
9 passed (13.7s)
|
|
π Playwright Run Summary
12 passed (31.5s)
|
|
π Playwright Run Summary
6 skipped
7 passed (28.3s)
|
|
π Playwright Run Summary
13 passed (17.5s)
|
|
π Playwright Run Summary
11 passed (42.5s)
|
|
π Playwright Run Summary
2 failed
[chromium] βΊ tests/streamed/transactions.test.ts:197:5 βΊ Sends streamed spans (http.server and manual with Sentry.startSpan)
[chromium] βΊ tests/streamed/transactions.test.ts:261:5 βΊ OTel span appears as child of Sentry span (interop)
23 passed (56.6s)
|
|
π Playwright Run Summary
2 passed (19.0s)
|
|
π Playwright Run Summary
15 passed (50.6s)
|
|
π Playwright Run Summary
5 passed (33.2s)
|
|
π Playwright Run Summary
5 passed (33.4s)
|
|
π Playwright Run Summary
22 passed (57.8s)
|
|
π Playwright Run Summary
5 passed (33.6s)
|
|
π Playwright Run Summary
5 passed (33.6s)
|
|
π Playwright Run Summary
2 passed (17.1s)
|
|
π Playwright Run Summary
13 passed (34.6s)
|
|
π Playwright Run Summary
9 passed (26.7s)
|
|
π Playwright Run Summary
9 passed (8.5s)
|
|
π Playwright Run Summary
21 skipped
2 passed (3.7s)
|
|
π Playwright Run Summary
10 passed (21.2s)
|
|
π Playwright Run Summary
10 passed (13.1s)
|
|
π Playwright Run Summary
2 passed (31.0s)
|
|
π Playwright Run Summary
2 passed (18.0s)
|
|
π Playwright Run Summary
13 passed (37.1s)
|
|
π Playwright Run Summary
8 skipped
22 passed (10.6s)
|
|
π Playwright Run Summary
10 passed (56.7s)
|
|
π Playwright Run Summary
14 passed (41.8s)
|
|
π Playwright Run Summary
22 passed (36.9s)
|
|
π Playwright Run Summary
10 passed (11.0s)
|
|
π Playwright Run Summary
2 passed (16.7s)
|
|
π Playwright Run Summary
15 passed (51.1s)
|
|
π Playwright Run Summary
6 passed (35.7s)
|
|
π Playwright Run Summary
22 passed (51.5s)
|
|
π Playwright Run Summary
7 skipped
23 passed (11.4s)
|
|
π Playwright Run Summary
40 passed (36.1s)
|
|
π Playwright Run Summary
14 passed (43.3s)
|
|
π Playwright Run Summary
3 passed (34.4s)
|
|
π Playwright Run Summary
3 passed (3.9s)
|
|
π Playwright Run Summary
4 passed (17.7s)
|
|
π Playwright Run Summary
4 skipped
51 passed (1.2m)
|
|
π Playwright Run Summary
4 passed (12.3s)
|
|
π Playwright Run Summary
3 passed (39.6s)
|
|
π Playwright Run Summary
3 passed (7.9s)
|
|
π Playwright Run Summary
4 skipped
12 passed (34.9s)
|
|
π Playwright Run Summary
2 skipped
14 passed (16.5s)
|
|
π Playwright Run Summary
4 passed (13.5s)
|
|
π Playwright Run Summary
3 passed (39.3s)
|
|
π Playwright Run Summary
3 passed (30.6s)
|
|
π Playwright Run Summary
3 passed (13.9s)
|
|
π Playwright Run Summary
7 skipped
23 passed (11.2s)
|
|
π Playwright Run Summary
13 passed (51.2s)
|
|
π Playwright Run Summary
13 passed (14.8s)
|
|
π Playwright Run Summary
5 passed (38.7s)
|
|
π Playwright Run Summary
5 passed (13.9s)
|
|
π Playwright Run Summary
2 passed (16.5s)
|
|
π Playwright Run Summary
18 passed (1.1m)
|
|
π Playwright Run Summary
2 passed (17.1s)
|
|
π Playwright Run Summary
18 passed (51.6s)
|
|
π Playwright Run Summary
10 passed (27.1s)
|
|
π Playwright Run Summary
10 passed (6.5s)
|
|
π Playwright Run Summary
11 passed (21.1s)
|
|
π Playwright Run Summary
5 skipped
25 passed (10.2s)
|
|
π Playwright Run Summary
11 passed (39.0s)
|
|
π Playwright Run Summary
12 passed (40.9s)
|
|
π Playwright Run Summary
2 passed (20.0s)
|
|
π Playwright Run Summary
2 skipped
21 passed (37.6s)
|
|
π Playwright Run Summary
17 passed (1.1m)
|
|
π Playwright Run Summary
9 passed (47.7s)
|
|
π Playwright Run Summary
9 passed (7.3s)
|
|
π Playwright Run Summary
2 passed (19.8s)
|
|
π Playwright Run Summary
11 passed (40.1s)
|
|
π Playwright Run Summary
13 passed (52.6s)
|
|
π Playwright Run Summary
13 passed (14.5s)
|
|
π Playwright Run Summary
4 skipped
12 passed (33.7s)
|
|
π Playwright Run Summary
2 skipped
14 passed (15.6s)
|
|
π Playwright Run Summary
16 skipped
12 passed (29.8s)
|
|
π Playwright Run Summary
10 passed (46.5s)
|
|
π Playwright Run Summary
13 passed (48.7s)
|
|
π Playwright Run Summary
13 passed (14.9s)
|
|
π Playwright Run Summary
17 passed (1.2m)
|
|
π Playwright Run Summary
6 skipped
7 passed (55.2s)
|
|
π Playwright Run Summary
13 passed (18.6s)
|
|
π Playwright Run Summary
4 skipped
30 passed (58.2s)
|
|
π Playwright Run Summary
2 skipped
32 passed (1.3m)
|
|
π Playwright Run Summary
1 skipped
11 passed (45.9s)
|
|
π Playwright Run Summary
12 passed (10.0s)
|
|
π Playwright Run Summary
3 passed (15.3s)
|
|
π Playwright Run Summary
3 passed (10.3s)
|
|
π Playwright Run Summary
2 passed (21.3s)
|
|
π Playwright Run Summary
2 skipped
21 passed (46.1s)
|
|
π Playwright Run Summary
1 skipped
5 passed (24.8s)
|
|
π Playwright Run Summary
58 passed (1.6m)
|
|
π Playwright Run Summary
10 passed (34.0s)
|
|
π Playwright Run Summary
1 skipped
73 passed (14.8s)
|
|
π Playwright Run Summary
1 skipped
5 passed (26.6s)
|
|
π Playwright Run Summary
58 passed (1.7m)
|
|
π Playwright Run Summary
5 skipped
30 passed (1.2m)
|
|
π Playwright Run Summary
5 skipped
30 passed (49.2s)
|
|
π Playwright Run Summary
1 skipped
5 passed (27.5s)
|
|
π Playwright Run Summary
58 passed (1.7m)
|
|
π Playwright Run Summary
67 passed (2.2m)
|
|
π Playwright Run Summary
44 passed (2.6m)
|
|
π Playwright Run Summary
1 skipped
5 passed (31.3s)
|
|
π Playwright Run Summary
67 passed (2.3m)
|
|
π Playwright Run Summary
5 skipped
30 passed (2.0m)
|
|
π Playwright Run Summary
4 skipped
31 passed (49.7s)
|
|
π Playwright Run Summary
16 skipped
32 passed (1.8m)
|
|
π Playwright Run Summary
5 skipped
43 passed (1.6m)
|
|
π Playwright Run Summary
5 skipped
30 passed (2.0m)
|
|
π Playwright Run Summary
4 skipped
31 passed (49.9s)
|
|
π Playwright Run Summary
1 skipped
5 passed (31.1s)
|
|
π Playwright Run Summary
67 passed (2.4m)
|
|
π Playwright Run Summary
1 skipped
5 passed (32.3s)
|
|
π Playwright Run Summary
67 passed (2.4m)
|
|
π Playwright Run Summary
16 skipped
32 passed (2.0m)
|
|
π Playwright Run Summary
5 skipped
43 passed (1.5m)
|
|
π Playwright Run Summary
4 passed (18.3s)
|
|
π Playwright Run Summary
16 skipped
32 passed (1.8m)
|
|
π Playwright Run Summary
5 skipped
43 passed (1.7m)
|
|
π Playwright Run Summary
2 skipped
32 passed (2.7m)
|
|
π Playwright Run Summary
2 skipped
32 passed (1.3m)
|
|
π Playwright Run Summary
15 skipped
32 passed (1.8m)
|
|
π Playwright Run Summary
5 skipped
42 passed (1.3m)
|
|
π Playwright Run Summary
13 skipped
35 passed (2.7m)
|
|
π Playwright Run Summary
5 skipped
43 passed (1.6m)
|
|
π Playwright Run Summary
2 skipped
32 passed (3.1m)
|
|
π Playwright Run Summary
2 skipped
32 passed (1.3m)
|
|
π Playwright Run Summary
13 skipped
35 passed (3.0m)
|
|
π Playwright Run Summary
5 skipped
43 passed (1.5m)
|
|
π Playwright Run Summary
13 skipped
35 passed (2.7m)
|
|
π Playwright Run Summary
5 skipped
43 passed (1.5m)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
build-bundle-output
|
19.8 MB |
sha256:e66cf3f7ca3fa0353129f064ee939c50f7b95147b5a1ea404fc735c2f9d85606
|
|
|
build-layer-output
|
1.33 MB |
sha256:5159f0559511f1fe7fa8ff6d25eeb053add9f012d5da0324d99e0b838564adf6
|
|
|
build-output
|
14.1 MB |
sha256:590ae0b1ea977e0783d13d011a7f0ef0d412977d382621447666daaa6c1b4a87
|
|
|
build-tarball-output
|
7.23 MB |
sha256:404ea20eb3c73ca027628a2247ef83c41b926b93a1c746e3e0f0f50a40fb91a2
|
|
|
playwright-traces-job_e2e_playwright_tests-deno
|
15 KB |
sha256:27f596f52878004cc53fa6fd4d2720fca2ce5d1b308dbecde509d0406a6a896f
|
|
|
playwright-traces-job_e2e_playwright_tests-nestjs-12
|
102 KB |
sha256:d5659a874e6fc47040715ef64be247ef6135ebe45e2c1a11c39c9909f9938f7d
|
|
|
playwright-traces-job_e2e_playwright_tests-nestjs-basic
|
105 KB |
sha256:d14fc13a3e88db0459c3449c6c3e628686ab3386c0ce8d899ffeb139f47d9b67
|
|
|
playwright-traces-job_e2e_playwright_tests-nestjs-with-submodules
|
32.2 KB |
sha256:da18b90b0db2760721e3fde7a684073858899efda9896c1f9fbda18e5faeb0fd
|
|