@@ -157,15 +157,15 @@ describe('App Start Integration', () => {
157
157
158
158
const actualEvent = await captureStandAloneAppStart ( ) ;
159
159
160
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
160
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
161
161
const bundleStartSpan = actualEvent ! . spans ! . find (
162
162
( { description } ) => description === 'JS Bundle Execution Start' ,
163
163
) ;
164
164
165
165
expect ( appStartRootSpan ) . toEqual (
166
166
expect . objectContaining ( < Partial < SpanJSON > > {
167
167
span_id : expect . any ( String ) ,
168
- description : 'Cold App Start' ,
168
+ description : 'Cold Start' ,
169
169
op : APP_START_COLD_OP ,
170
170
data : {
171
171
[ SEMANTIC_ATTRIBUTE_SENTRY_OP ] : APP_START_COLD_OP ,
@@ -195,15 +195,15 @@ describe('App Start Integration', () => {
195
195
196
196
const actualEvent = await captureStandAloneAppStart ( ) ;
197
197
198
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
198
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
199
199
const bundleStartSpan = actualEvent ! . spans ! . find (
200
200
( { description } ) => description === 'JS Bundle Execution Before React Root' ,
201
201
) ;
202
202
203
203
expect ( appStartRootSpan ) . toEqual (
204
204
expect . objectContaining ( < Partial < SpanJSON > > {
205
205
span_id : expect . any ( String ) ,
206
- description : 'Cold App Start' ,
206
+ description : 'Cold Start' ,
207
207
op : APP_START_COLD_OP ,
208
208
data : {
209
209
[ SEMANTIC_ATTRIBUTE_SENTRY_OP ] : APP_START_COLD_OP ,
@@ -234,13 +234,13 @@ describe('App Start Integration', () => {
234
234
235
235
const actualEvent = await captureStandAloneAppStart ( ) ;
236
236
237
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
237
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
238
238
const nativeSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'test native app start span' ) ;
239
239
240
240
expect ( appStartRootSpan ) . toEqual (
241
241
expect . objectContaining ( < Partial < SpanJSON > > {
242
242
span_id : expect . any ( String ) ,
243
- description : 'Cold App Start' ,
243
+ description : 'Cold Start' ,
244
244
op : APP_START_COLD_OP ,
245
245
data : {
246
246
[ SEMANTIC_ATTRIBUTE_SENTRY_OP ] : APP_START_COLD_OP ,
@@ -472,14 +472,14 @@ describe('App Start Integration', () => {
472
472
473
473
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
474
474
475
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
475
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
476
476
const bundleStartSpan = actualEvent ! . spans ! . find (
477
477
( { description } ) => description === 'JS Bundle Execution Start' ,
478
478
) ;
479
479
480
480
expect ( appStartRootSpan ) . toEqual (
481
481
expect . objectContaining ( < Partial < SpanJSON > > {
482
- description : 'Cold App Start' ,
482
+ description : 'Cold Start' ,
483
483
span_id : expect . any ( String ) ,
484
484
op : APP_START_COLD_OP ,
485
485
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -512,14 +512,14 @@ describe('App Start Integration', () => {
512
512
513
513
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
514
514
515
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
515
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
516
516
const bundleStartSpan = actualEvent ! . spans ! . find (
517
517
( { description } ) => description === 'JS Bundle Execution Before React Root' ,
518
518
) ;
519
519
520
520
expect ( appStartRootSpan ) . toEqual (
521
521
expect . objectContaining ( < Partial < SpanJSON > > {
522
- description : 'Cold App Start' ,
522
+ description : 'Cold Start' ,
523
523
span_id : expect . any ( String ) ,
524
524
op : APP_START_COLD_OP ,
525
525
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -552,14 +552,14 @@ describe('App Start Integration', () => {
552
552
553
553
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
554
554
555
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
555
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
556
556
const bundleStartSpan = actualEvent ! . spans ! . find (
557
557
( { description } ) => description === 'JS Bundle Execution Before React Root' ,
558
558
) ;
559
559
560
560
expect ( appStartRootSpan ) . toEqual (
561
561
expect . objectContaining ( < Partial < SpanJSON > > {
562
- description : 'Cold App Start' ,
562
+ description : 'Cold Start' ,
563
563
span_id : expect . any ( String ) ,
564
564
op : APP_START_COLD_OP ,
565
565
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -593,12 +593,12 @@ describe('App Start Integration', () => {
593
593
594
594
const actualEvent = await processEvent ( getMinimalTransactionEvent ( ) ) ;
595
595
596
- const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold App Start' ) ;
596
+ const appStartRootSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'Cold Start' ) ;
597
597
const nativeSpan = actualEvent ! . spans ! . find ( ( { description } ) => description === 'test native app start span' ) ;
598
598
599
599
expect ( appStartRootSpan ) . toEqual (
600
600
expect . objectContaining ( < Partial < SpanJSON > > {
601
- description : 'Cold App Start' ,
601
+ description : 'Cold Start' ,
602
602
span_id : expect . any ( String ) ,
603
603
op : APP_START_COLD_OP ,
604
604
origin : SPAN_ORIGIN_AUTO_APP_START ,
@@ -873,7 +873,7 @@ function expectEventWithAttachedColdAppStart({
873
873
spans : expect . arrayContaining < SpanJSON > ( [
874
874
{
875
875
op : APP_START_COLD_OP ,
876
- description : 'Cold App Start' ,
876
+ description : 'Cold Start' ,
877
877
start_timestamp : appStartTimeMilliseconds / 1000 ,
878
878
timestamp : expect . any ( Number ) ,
879
879
trace_id : expect . any ( String ) ,
@@ -927,7 +927,7 @@ function expectEventWithAttachedWarmAppStart({
927
927
spans : expect . arrayContaining < SpanJSON > ( [
928
928
{
929
929
op : APP_START_WARM_OP ,
930
- description : 'Warm App Start' ,
930
+ description : 'Warm Start' ,
931
931
start_timestamp : appStartTimeMilliseconds / 1000 ,
932
932
timestamp : expect . any ( Number ) ,
933
933
trace_id : expect . any ( String ) ,
@@ -984,7 +984,7 @@ function expectEventWithStandaloneColdAppStart(
984
984
spans : expect . arrayContaining < SpanJSON > ( [
985
985
{
986
986
op : APP_START_COLD_OP ,
987
- description : 'Cold App Start' ,
987
+ description : 'Cold Start' ,
988
988
start_timestamp : appStartTimeMilliseconds / 1000 ,
989
989
timestamp : expect . any ( Number ) ,
990
990
trace_id : expect . any ( String ) ,
@@ -1033,7 +1033,7 @@ function expectEventWithStandaloneWarmAppStart(
1033
1033
spans : expect . arrayContaining < SpanJSON > ( [
1034
1034
{
1035
1035
op : APP_START_WARM_OP ,
1036
- description : 'Warm App Start' ,
1036
+ description : 'Warm Start' ,
1037
1037
start_timestamp : appStartTimeMilliseconds / 1000 ,
1038
1038
timestamp : expect . any ( Number ) ,
1039
1039
trace_id : expect . any ( String ) ,
0 commit comments