@@ -151,15 +151,15 @@ describe('App Start Integration', () => {
151
151
152
152
const actualEvent = await captureStandAloneAppStart ( ) ;
153
153
154
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
154
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
155
155
const bundleStartSpan = actualEvent ! . spans ! . find (
156
156
( { description } ) => description === 'JS Bundle Execution Start' ,
157
157
) ;
158
158
159
159
expect ( appStartRootSpan ) . toEqual (
160
160
expect . objectContaining ( < Partial < SpanJSON > > {
161
161
span_id : expect . any ( String ) ,
162
- description : 'Cold App Start' ,
162
+ description : 'Cold Start' ,
163
163
op : APP_START_COLD_OP ,
164
164
data : {
165
165
[ SEMANTIC_ATTRIBUTE_SENTRY_OP ] : APP_START_COLD_OP ,
@@ -189,15 +189,15 @@ describe('App Start Integration', () => {
189
189
190
190
const actualEvent = await captureStandAloneAppStart ( ) ;
191
191
192
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
192
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
193
193
const bundleStartSpan = actualEvent ! . spans ! . find (
194
194
( { description } ) => description === 'JS Bundle Execution Before React Root' ,
195
195
) ;
196
196
197
197
expect ( appStartRootSpan ) . toEqual (
198
198
expect . objectContaining ( < Partial < SpanJSON > > {
199
199
span_id : expect . any ( String ) ,
200
- description : 'Cold App Start' ,
200
+ description : 'Cold Start' ,
201
201
op : APP_START_COLD_OP ,
202
202
data : {
203
203
[ SEMANTIC_ATTRIBUTE_SENTRY_OP ] : APP_START_COLD_OP ,
@@ -228,13 +228,13 @@ describe('App Start Integration', () => {
228
228
229
229
const actualEvent = await captureStandAloneAppStart ( ) ;
230
230
231
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
231
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
232
232
const nativeSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'test native app start span' ) ;
233
233
234
234
expect ( appStartRootSpan ) . toEqual (
235
235
expect . objectContaining ( < Partial < SpanJSON > > {
236
236
span_id : expect . any ( String ) ,
237
- description : 'Cold App Start' ,
237
+ description : 'Cold Start' ,
238
238
op : APP_START_COLD_OP ,
239
239
data : {
240
240
[ SEMANTIC_ATTRIBUTE_SENTRY_OP ] : APP_START_COLD_OP ,
@@ -465,14 +465,14 @@ describe('App Start Integration', () => {
465
465
466
466
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
467
467
468
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
468
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
469
469
const bundleStartSpan = actualEvent ! . spans ! . find (
470
470
( { description } ) => description === 'JS Bundle Execution Start' ,
471
471
) ;
472
472
473
473
expect ( appStartRootSpan ) . toEqual (
474
474
expect . objectContaining ( < Partial < SpanJSON > > {
475
- description : 'Cold App Start' ,
475
+ description : 'Cold Start' ,
476
476
span_id : expect . any ( String ) ,
477
477
op : APP_START_COLD_OP ,
478
478
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -505,14 +505,14 @@ describe('App Start Integration', () => {
505
505
506
506
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
507
507
508
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
508
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
509
509
const bundleStartSpan = actualEvent ! . spans ! . find (
510
510
( { description } ) => description === 'JS Bundle Execution Before React Root' ,
511
511
) ;
512
512
513
513
expect ( appStartRootSpan ) . toEqual (
514
514
expect . objectContaining ( < Partial < SpanJSON > > {
515
- description : 'Cold App Start' ,
515
+ description : 'Cold Start' ,
516
516
span_id : expect . any ( String ) ,
517
517
op : APP_START_COLD_OP ,
518
518
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -545,14 +545,14 @@ describe('App Start Integration', () => {
545
545
546
546
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
547
547
548
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
548
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
549
549
const bundleStartSpan = actualEvent ! . spans ! . find (
550
550
( { description } ) => description === 'JS Bundle Execution Before React Root' ,
551
551
) ;
552
552
553
553
expect ( appStartRootSpan ) . toEqual (
554
554
expect . objectContaining ( < Partial < SpanJSON > > {
555
- description : 'Cold App Start' ,
555
+ description : 'Cold Start' ,
556
556
span_id : expect . any ( String ) ,
557
557
op : APP_START_COLD_OP ,
558
558
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -586,12 +586,12 @@ describe('App Start Integration', () => {
586
586
587
587
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
588
588
589
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
589
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
590
590
const nativeSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'test native app start span' ) ;
591
591
592
592
expect ( appStartRootSpan ) . toEqual (
593
593
expect . objectContaining ( < Partial < SpanJSON > > {
594
- description : 'Cold App Start' ,
594
+ description : 'Cold Start' ,
595
595
span_id : expect . any ( String ) ,
596
596
op : APP_START_COLD_OP ,
597
597
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -802,7 +802,7 @@ function expectEventWithAttachedColdAppStart({
802
802
spans : expect . arrayContaining < SpanJSON > ( [
803
803
{
804
804
op : APP_START_COLD_OP ,
805
- description : 'Cold App Start' ,
805
+ description : 'Cold Start' ,
806
806
start_timestamp : appStartTimeMilliseconds / 1000 ,
807
807
timestamp : expect . any ( Number ) ,
808
808
trace_id : expect . any ( String ) ,
@@ -856,7 +856,7 @@ function expectEventWithAttachedWarmAppStart({
856
856
spans : expect . arrayContaining < SpanJSON > ( [
857
857
{
858
858
op : APP_START_WARM_OP ,
859
- description : 'Warm App Start' ,
859
+ description : 'Warm Start' ,
860
860
start_timestamp : appStartTimeMilliseconds / 1000 ,
861
861
timestamp : expect . any ( Number ) ,
862
862
trace_id : expect . any ( String ) ,
@@ -913,7 +913,7 @@ function expectEventWithStandaloneColdAppStart(
913
913
spans : expect . arrayContaining < SpanJSON > ( [
914
914
{
915
915
op : APP_START_COLD_OP ,
916
- description : 'Cold App Start' ,
916
+ description : 'Cold Start' ,
917
917
start_timestamp : appStartTimeMilliseconds / 1000 ,
918
918
timestamp : expect . any ( Number ) ,
919
919
trace_id : expect . any ( String ) ,
@@ -962,7 +962,7 @@ function expectEventWithStandaloneWarmAppStart(
962
962
spans : expect . arrayContaining < SpanJSON > ( [
963
963
{
964
964
op : APP_START_WARM_OP ,
965
- description : 'Warm App Start' ,
965
+ description : 'Warm Start' ,
966
966
start_timestamp : appStartTimeMilliseconds / 1000 ,
967
967
timestamp : expect . any ( Number ) ,
968
968
trace_id : expect . any ( String ) ,
0 commit comments