@@ -2,14 +2,14 @@ import {
2
2
ApplicationInitStatus ,
3
3
ChangeDetectorRef ,
4
4
Component ,
5
- isStandalone ,
6
5
NgZone ,
7
6
OnChanges ,
8
7
OutputRef ,
9
8
OutputRefSubscription ,
10
9
SimpleChange ,
11
10
SimpleChanges ,
12
11
Type ,
12
+ isStandalone ,
13
13
} from '@angular/core' ;
14
14
import { ComponentFixture , DeferBlockBehavior , DeferBlockState , TestBed , tick } from '@angular/core/testing' ;
15
15
import { BrowserAnimationsModule , NoopAnimationsModule } from '@angular/platform-browser/animations' ;
@@ -27,14 +27,14 @@ import {
27
27
waitForOptions as dtlWaitForOptions ,
28
28
within as dtlWithin ,
29
29
} from '@testing-library/dom' ;
30
+ import { getConfig } from './config' ;
30
31
import {
31
32
ComponentOverride ,
33
+ OutputRefKeysWithCallback ,
32
34
RenderComponentOptions ,
33
35
RenderResult ,
34
36
RenderTemplateOptions ,
35
- OutputRefKeysWithCallback ,
36
37
} from './models' ;
37
- import { getConfig } from './config' ;
38
38
39
39
type SubscribedOutput < T > = readonly [ key : keyof T , callback : ( v : any ) => void , subscription : OutputRefSubscription ] ;
40
40
@@ -71,7 +71,7 @@ export async function render<SutType, WrapperType = SutType>(
71
71
on = { } ,
72
72
componentProviders = [ ] ,
73
73
childComponentOverrides = [ ] ,
74
- componentImports : componentImports ,
74
+ componentImports,
75
75
excludeComponentDeclaration = false ,
76
76
routes = [ ] ,
77
77
removeAngularAttributes = false ,
@@ -116,12 +116,9 @@ export async function render<SutType, WrapperType = SutType>(
116
116
117
117
await TestBed . compileComponents ( ) ;
118
118
119
- componentProviders
120
- . reduce ( ( acc , provider ) => acc . concat ( provider ) , [ ] as any [ ] )
121
- . forEach ( ( p : any ) => {
122
- const { provide, ...provider } = p ;
123
- TestBed . overrideProvider ( provide , provider ) ;
124
- } ) ;
119
+ for ( const { provide, ...provider } of componentProviders ) {
120
+ TestBed . overrideProvider ( provide , provider ) ;
121
+ }
125
122
126
123
const componentContainer = createComponentFixture ( sut , wrapper ) ;
127
124
@@ -158,7 +155,9 @@ export async function render<SutType, WrapperType = SutType>(
158
155
let result ;
159
156
160
157
if ( zone ) {
161
- await zone . run ( ( ) => ( result = doNavigate ( ) ) ) ;
158
+ await zone . run ( ( ) => {
159
+ result = doNavigate ( ) ;
160
+ } ) ;
162
161
} else {
163
162
result = doNavigate ( ) ;
164
163
}
@@ -199,15 +198,17 @@ export async function render<SutType, WrapperType = SutType>(
199
198
if ( removeAngularAttributes ) {
200
199
createdFixture . nativeElement . removeAttribute ( 'ng-version' ) ;
201
200
const idAttribute = createdFixture . nativeElement . getAttribute ( 'id' ) ;
202
- if ( idAttribute && idAttribute . startsWith ( 'root' ) ) {
201
+ if ( idAttribute ? .startsWith ( 'root' ) ) {
203
202
createdFixture . nativeElement . removeAttribute ( 'id' ) ;
204
203
}
205
204
}
206
205
207
206
mountedFixtures . add ( createdFixture ) ;
208
207
209
208
let isAlive = true ;
210
- createdFixture . componentRef . onDestroy ( ( ) => ( isAlive = false ) ) ;
209
+ createdFixture . componentRef . onDestroy ( ( ) => {
210
+ isAlive = false ;
211
+ } ) ;
211
212
212
213
if ( hasOnChangesHook ( createdFixture . componentInstance ) && Object . keys ( properties ) . length > 0 ) {
213
214
const changes = getChangesObj ( null , componentProperties ) ;
@@ -318,10 +319,15 @@ export async function render<SutType, WrapperType = SutType>(
318
319
} ,
319
320
debugElement : fixture . debugElement ,
320
321
container : fixture . nativeElement ,
321
- debug : ( element = fixture . nativeElement , maxLength , options ) =>
322
- Array . isArray ( element )
323
- ? element . forEach ( ( e ) => console . log ( dtlPrettyDOM ( e , maxLength , options ) ) )
324
- : console . log ( dtlPrettyDOM ( element , maxLength , options ) ) ,
322
+ debug : ( element = fixture . nativeElement , maxLength , options ) => {
323
+ if ( Array . isArray ( element ) ) {
324
+ for ( const e of element ) {
325
+ console . log ( dtlPrettyDOM ( e , maxLength , options ) ) ;
326
+ }
327
+ } else {
328
+ console . log ( dtlPrettyDOM ( element , maxLength , options ) ) ;
329
+ }
330
+ } ,
325
331
...replaceFindWithFindAndDetectChanges ( dtlGetQueriesForElement ( fixture . nativeElement , queries ) ) ,
326
332
} ;
327
333
}
@@ -423,9 +429,11 @@ function overrideComponentImports<SutType>(sut: Type<SutType> | string, imports:
423
429
}
424
430
425
431
function overrideChildComponentProviders ( componentOverrides : ComponentOverride < any > [ ] ) {
426
- componentOverrides ?. forEach ( ( { component, providers } ) => {
427
- TestBed . overrideComponent ( component , { set : { providers } } ) ;
428
- } ) ;
432
+ if ( componentOverrides ) {
433
+ for ( const { component, providers } of componentOverrides ) {
434
+ TestBed . overrideComponent ( component , { set : { providers } } ) ;
435
+ }
436
+ }
429
437
}
430
438
431
439
function hasOnChangesHook < SutType > ( componentInstance : SutType ) : componentInstance is SutType & OnChanges {
@@ -439,13 +447,10 @@ function hasOnChangesHook<SutType>(componentInstance: SutType): componentInstanc
439
447
440
448
function getChangesObj ( oldProps : Record < string , any > | null , newProps : Record < string , any > ) {
441
449
const isFirstChange = oldProps === null ;
442
- return Object . keys ( newProps ) . reduce < SimpleChanges > (
443
- ( changes , key ) => ( {
444
- ...changes ,
445
- [ key ] : new SimpleChange ( isFirstChange ? null : oldProps [ key ] , newProps [ key ] , isFirstChange ) ,
446
- } ) ,
447
- { } as Record < string , any > ,
448
- ) ;
450
+ return Object . keys ( newProps ) . reduce < SimpleChanges > ( ( changes , key ) => {
451
+ changes [ key ] = new SimpleChange ( isFirstChange ? null : oldProps [ key ] , newProps [ key ] , isFirstChange ) ;
452
+ return changes ;
453
+ } , { } as Record < string , any > ) ;
449
454
}
450
455
451
456
function update < SutType > (
@@ -461,10 +466,12 @@ function update<SutType>(
461
466
const componentInstance = fixture . componentInstance as Record < string , any > ;
462
467
const simpleChanges : SimpleChanges = { } ;
463
468
464
- for ( const key of prevRenderedKeys ) {
465
- if ( ! partialUpdate && ! Object . prototype . hasOwnProperty . call ( newValues , key ) ) {
466
- simpleChanges [ key ] = new SimpleChange ( componentInstance [ key ] , undefined , false ) ;
467
- delete componentInstance [ key ] ;
469
+ if ( ! partialUpdate ) {
470
+ for ( const key of prevRenderedKeys ) {
471
+ if ( ! Object . prototype . hasOwnProperty . call ( newValues , key ) ) {
472
+ simpleChanges [ key ] = new SimpleChange ( componentInstance [ key ] , undefined , false ) ;
473
+ delete componentInstance [ key ] ;
474
+ }
468
475
}
469
476
}
470
477
@@ -643,15 +650,15 @@ function replaceFindWithFindAndDetectChanges<T extends Record<string, any>>(orig
643
650
* Call detectChanges for all fixtures
644
651
*/
645
652
function detectChangesForMountedFixtures ( ) {
646
- mountedFixtures . forEach ( ( fixture ) => {
653
+ for ( const fixture of mountedFixtures ) {
647
654
try {
648
655
fixture . detectChanges ( ) ;
649
656
} catch ( err : any ) {
650
657
if ( ! err . message . startsWith ( 'ViewDestroyedError' ) ) {
651
658
throw err ;
652
659
}
653
660
}
654
- } ) ;
661
+ }
655
662
}
656
663
657
664
/**
0 commit comments