@@ -129,22 +129,22 @@ describe('reactiverefs', () => {
129
129
) ;
130
130
} ) ;
131
131
} ) . toErrorDev ( [
132
- 'Warning: Component "div" contains the string ref "resetDiv". ' +
133
- 'Support for string refs will be removed in a future major release. ' +
134
- 'We recommend using useRef() or createRef() instead. ' +
135
- 'Learn more about using refs safely here: https://react.dev/link/strict-mode-string-ref\n' +
136
- ' in div (at **)\n' +
137
- ' in TestRefsComponent (at **)' ,
138
- 'Warning: Component "span" contains the string ref "clickLog0". ' +
139
- 'Support for string refs will be removed in a future major release. ' +
140
- 'We recommend using useRef() or createRef() instead. ' +
141
- 'Learn more about using refs safely here: https://react.dev/link/strict-mode-string-ref\n' +
142
- ' in span (at **)\n' +
143
- ' in ClickCounter (at **)\n' +
132
+ 'Warning: Component "TestRefsComponent" contains the string ' +
133
+ 'ref "resetDiv". Support for string refs will be removed in a ' +
134
+ 'future major release. We recommend using useRef() or createRef() ' +
135
+ 'instead. Learn more about using refs safely ' +
136
+ 'here: https://react.dev/link/strict-mode-string-ref\n' +
144
137
' in div (at **)\n' +
145
- ' in GeneralContainerComponent (at **)\n' +
146
138
' in div (at **)\n' +
147
139
' in TestRefsComponent (at **)' ,
140
+ 'Warning: Component "ClickCounter" contains the string ' +
141
+ 'ref "clickLog0". Support for string refs will be removed in a ' +
142
+ 'future major release. We recommend using useRef() or createRef() ' +
143
+ 'instead. Learn more about using refs safely ' +
144
+ 'here: https://react.dev/link/strict-mode-string-ref\n' +
145
+ ' in div (at **)\n' +
146
+ ' in span (at **)\n' +
147
+ ' in ClickCounter (at **)' ,
148
148
] ) ;
149
149
150
150
expect ( testRefsComponent instanceof TestRefsComponent ) . toBe ( true ) ;
@@ -352,29 +352,29 @@ describe('ref swapping', () => {
352
352
'Support for string refs will be removed in a future major release. ' +
353
353
'We recommend using useRef() or createRef() instead. ' +
354
354
'Learn more about using refs safely here: https://react.dev/link/strict-mode-string-ref\n' +
355
+ ' in div (at **)\n' +
355
356
' in A (at **)' ,
356
357
] ) ;
357
358
expect ( a . refs [ 1 ] . nodeName ) . toBe ( 'DIV' ) ;
358
359
} ) ;
359
360
360
- // @gate !disableStringRefs
361
361
it ( 'provides an error for invalid refs' , async ( ) => {
362
362
const container = document . createElement ( 'div' ) ;
363
363
const root = ReactDOMClient . createRoot ( container ) ;
364
364
await expect ( async ( ) => {
365
365
await act ( ( ) => {
366
366
root . render ( < div ref = { 10 } /> ) ;
367
367
} ) ;
368
- } ) . rejects . toThrow (
369
- 'Element ref was specified as a string (10) but no owner was set.' ,
370
- ) ;
368
+ // TODO: This throws an AggregateError. Need to update test infra to
369
+ // support matching against AggregateError.
370
+ } ) . rejects . toThrow ( ) ;
371
371
await expect ( async ( ) => {
372
372
await act ( ( ) => {
373
373
root . render ( < div ref = { true } /> ) ;
374
374
} ) ;
375
- } ) . rejects . toThrow (
376
- 'Element ref was specified as a string (true) but no owner was set.' ,
377
- ) ;
375
+ // TODO: This throws an AggregateError. Need to update test infra to
376
+ // support matching against AggregateError.
377
+ } ) . rejects . toThrow ( ) ;
378
378
await expect ( async ( ) => {
379
379
await act ( ( ) => {
380
380
root . render ( < div ref = { Symbol ( 'foo' ) } /> ) ;
@@ -520,14 +520,10 @@ describe('creating element with string ref in constructor', () => {
520
520
await act ( ( ) => {
521
521
root . render ( < RefTest /> ) ;
522
522
} ) ;
523
- } ) . rejects . toThrowError (
524
- 'Element ref was specified as a string (p) but no owner was set. This could happen for one of' +
525
- ' the following reasons:\n' +
526
- '1. You may be adding a ref to a function component\n' +
527
- "2. You may be adding a ref to a component that was not created inside a component's render method\n" +
528
- '3. You have multiple copies of React loaded\n' +
529
- 'See https://react.dev/link/refs-must-have-owner for more information.' ,
530
- ) ;
523
+ } )
524
+ // TODO: This throws an AggregateError. Need to update test infra to
525
+ // support matching against AggregateError.
526
+ . rejects . toThrowError ( ) ;
531
527
} ) ;
532
528
} ) ;
533
529
@@ -581,10 +577,11 @@ describe('strings refs across renderers', () => {
581
577
) ;
582
578
} ) ;
583
579
} ) . toErrorDev ( [
584
- 'Warning: Component "Indirection " contains the string ref "child1". ' +
580
+ 'Warning: Component "Parent " contains the string ref "child1". ' +
585
581
'Support for string refs will be removed in a future major release. ' +
586
582
'We recommend using useRef() or createRef() instead. ' +
587
583
'Learn more about using refs safely here: https://react.dev/link/strict-mode-string-ref\n' +
584
+ ' in div (at **)\n' +
588
585
' in Indirection (at **)\n' +
589
586
' in Parent (at **)' ,
590
587
] ) ;
@@ -593,20 +590,10 @@ describe('strings refs across renderers', () => {
593
590
expect ( inst . refs . child1 . tagName ) . toBe ( 'DIV' ) ;
594
591
expect ( inst . refs . child1 ) . toBe ( div1 . firstChild ) ;
595
592
596
- await expect ( async ( ) => {
597
- // Now both refs should be rendered.
598
- await act ( ( ) => {
599
- root . render ( < Parent /> ) ;
600
- } ) ;
601
- } ) . toErrorDev (
602
- [
603
- 'Warning: Component "Root" contains the string ref "child2". ' +
604
- 'Support for string refs will be removed in a future major release. ' +
605
- 'We recommend using useRef() or createRef() instead. ' +
606
- 'Learn more about using refs safely here: https://react.dev/link/strict-mode-string-ref' ,
607
- ] ,
608
- { withoutStack : true } ,
609
- ) ;
593
+ // Now both refs should be rendered.
594
+ await act ( ( ) => {
595
+ root . render ( < Parent /> ) ;
596
+ } ) ;
610
597
expect ( inst . refs . child1 . tagName ) . toBe ( 'DIV' ) ;
611
598
expect ( inst . refs . child1 ) . toBe ( div1 . firstChild ) ;
612
599
expect ( inst . refs . child2 . tagName ) . toBe ( 'DIV' ) ;
0 commit comments