@@ -16,7 +16,7 @@ test('should not apply build-time instrumentation for routes that were excluded
1616const transaction = await transactionPromise ;
1717
1818expect ( transaction . contexts ?. trace ?. data ?. [ 'sentry.origin' ] ) . toBeDefined ( ) ;
19- expect ( transaction . contexts ?. trace ?. data ?. [ 'sentry.origin' ] ) . not . toBe ( 'auto.http.nextjs ' ) ; // This is the origin set by the build time instrumentation
19+ expect ( transaction . contexts ?. trace ?. data ?. [ 'sentry.origin' ] ) . toBe ( 'auto' ) ;
2020} ) ;
2121
2222test ( 'should not apply build-time instrumentation for routes that were excluded from auto wrapping (regex)' , async ( {
@@ -34,5 +34,5 @@ test('should not apply build-time instrumentation for routes that were excluded
3434const transaction = await transactionPromise ;
3535
3636expect ( transaction . contexts ?. trace ?. data ?. [ 'sentry.origin' ] ) . toBeDefined ( ) ;
37- expect ( transaction . contexts ?. trace ?. data ?. [ 'sentry.origin' ] ) . not . toBe ( 'auto.http.nextjs ' ) ; // This is the origin set by the build time instrumentation
37+ expect ( transaction . contexts ?. trace ?. data ?. [ 'sentry.origin' ] ) . toBe ( 'auto' ) ;
3838} ) ;