@@ -262,15 +262,15 @@ describe("Renderer E2E", () => {
262
262
return nsTestBedRender ( LayoutWithLabel ) . then ( ( fixture ) => {
263
263
const componentRef : ComponentRef < LayoutWithLabel > = fixture . componentRef ;
264
264
const componentRoot = componentRef . instance . elementRef . nativeElement ;
265
- assert . equal ( "(ProxyViewContainer (StackLayout (Label )))" , dumpView ( componentRoot ) ) ;
265
+ assert . equal ( "(proxyviewcontainer (stacklayout (label )))" , dumpView ( componentRoot ) ) ;
266
266
} ) ;
267
267
} ) ;
268
268
269
269
it ( "component without a layout" , ( ) => {
270
270
return nsTestBedRender ( LabelContainer ) . then ( ( fixture ) => {
271
271
const componentRef : ComponentRef < LabelContainer > = fixture . componentRef ;
272
272
const componentRoot = componentRef . instance . elementRef . nativeElement ;
273
- assert . equal ( "(ProxyViewContainer (GridLayout (ProxyViewContainer (Label ))))" , dumpView ( componentRoot ) ) ;
273
+ assert . equal ( "(proxyviewcontainer (gridlayout (proxyviewcontainer (label ))))" , dumpView ( componentRoot ) ) ;
274
274
} ) ;
275
275
} ) ;
276
276
@@ -279,7 +279,7 @@ describe("Renderer E2E", () => {
279
279
const componentRef : ComponentRef < ProjectionContainer > = fixture . componentRef ;
280
280
const componentRoot = componentRef . instance . elementRef . nativeElement ;
281
281
assert . equal (
282
- "(ProxyViewContainer (GridLayout (ProxyViewContainer (StackLayout (Button )))))" ,
282
+ "(proxyviewcontainer (gridlayout (proxyviewcontainer (stacklayout (button )))))" ,
283
283
dumpView ( componentRoot ) ) ;
284
284
} ) ;
285
285
} ) ;
@@ -355,7 +355,7 @@ describe("Renderer E2E", () => {
355
355
return nsTestBedRender ( NgIfLabel ) . then ( ( fixture ) => {
356
356
const componentRef : ComponentRef < NgIfLabel > = fixture . componentRef ;
357
357
const componentRoot = componentRef . instance . elementRef . nativeElement ;
358
- assert . equal ( "(ProxyViewContainer )" , dumpView ( componentRoot ) ) ;
358
+ assert . equal ( "(proxyviewcontainer )" , dumpView ( componentRoot ) ) ;
359
359
} ) ;
360
360
} ) ;
361
361
@@ -367,7 +367,7 @@ describe("Renderer E2E", () => {
367
367
368
368
component . show = true ;
369
369
fixture . detectChanges ( ) ;
370
- assert . equal ( "(ProxyViewContainer (Label ))" , dumpView ( componentRoot ) ) ;
370
+ assert . equal ( "(proxyviewcontainer (label ))" , dumpView ( componentRoot ) ) ;
371
371
} ) ;
372
372
} ) ;
373
373
@@ -380,7 +380,7 @@ describe("Renderer E2E", () => {
380
380
component . show = true ;
381
381
fixture . detectChanges ( ) ;
382
382
assert . equal (
383
- "(ProxyViewContainer (StackLayout (Label ), (Button )))" ,
383
+ "(proxyviewcontainer (stacklayout (label ), (button )))" ,
384
384
dumpView ( componentRoot ) ) ;
385
385
} ) ;
386
386
} ) ;
@@ -394,13 +394,13 @@ describe("Renderer E2E", () => {
394
394
component . show = true ;
395
395
fixture . detectChanges ( ) ;
396
396
assert . equal (
397
- "(ProxyViewContainer " +
398
- "(StackLayout " +
399
- "(Label [text=1]), " +
400
- "(Label [text=2]), " +
401
- "(Label [text=3]), " +
402
- "(Label [text=4]), " + // the content to be conditionally displayed
403
- "(Label [text=5])" +
397
+ "(proxyviewcontainer " +
398
+ "(stacklayout " +
399
+ "(label [text=1]), " +
400
+ "(label [text=2]), " +
401
+ "(label [text=3]), " +
402
+ "(label [text=4]), " + // the content to be conditionally displayed
403
+ "(label [text=5])" +
404
404
")" +
405
405
")" ,
406
406
dumpView ( componentRoot , true ) ) ;
@@ -416,9 +416,9 @@ describe("Renderer E2E", () => {
416
416
fixture . detectChanges ( ) ;
417
417
418
418
assert . equal (
419
- "(ProxyViewContainer " +
420
- "(StackLayout " +
421
- "(Label [text=If])" +
419
+ "(proxyviewcontainer " +
420
+ "(stacklayout " +
421
+ "(label [text=If])" +
422
422
")" +
423
423
")" ,
424
424
@@ -435,9 +435,9 @@ describe("Renderer E2E", () => {
435
435
component . show = false ;
436
436
fixture . detectChanges ( ) ;
437
437
assert . equal (
438
- "(ProxyViewContainer " +
439
- "(StackLayout " +
440
- "(Label [text=Else])" +
438
+ "(proxyviewcontainer " +
439
+ "(stacklayout " +
440
+ "(label [text=Else])" +
441
441
")" +
442
442
")" ,
443
443
@@ -453,9 +453,9 @@ describe("Renderer E2E", () => {
453
453
454
454
fixture . detectChanges ( ) ;
455
455
assert . equal (
456
- "(ProxyViewContainer " +
457
- "(StackLayout " +
458
- "(Label [text=Then])" +
456
+ "(proxyviewcontainer " +
457
+ "(stacklayout " +
458
+ "(label [text=Then])" +
459
459
")" +
460
460
")" ,
461
461
@@ -473,9 +473,9 @@ describe("Renderer E2E", () => {
473
473
component . show = false ;
474
474
fixture . detectChanges ( ) ;
475
475
assert . equal (
476
- "(ProxyViewContainer " +
477
- "(StackLayout " +
478
- "(Label [text=Else])" +
476
+ "(proxyviewcontainer " +
477
+ "(stacklayout " +
478
+ "(label [text=Else])" +
479
479
")" +
480
480
")" ,
481
481
@@ -488,7 +488,7 @@ describe("Renderer E2E", () => {
488
488
const componentRef : ComponentRef < NgForLabel > = fixture . componentRef ;
489
489
const componentRoot = componentRef . instance . elementRef . nativeElement ;
490
490
assert . equal (
491
- "(ProxyViewContainer (Label [text=one]), (Label [text=two]), (Label [text=three]))" ,
491
+ "(proxyviewcontainer (label [text=one]), (label [text=two]), (label [text=three]))" ,
492
492
dumpView ( componentRoot , true ) ) ;
493
493
} ) ;
494
494
} ) ;
@@ -503,7 +503,7 @@ describe("Renderer E2E", () => {
503
503
fixture . detectChanges ( ) ;
504
504
505
505
assert . equal (
506
- "(ProxyViewContainer (Label [text=one]), (Label [text=three]))" ,
506
+ "(proxyviewcontainer (label [text=one]), (label [text=three]))" ,
507
507
dumpView ( componentRoot , true ) ) ;
508
508
} ) ;
509
509
} ) ;
@@ -518,8 +518,8 @@ describe("Renderer E2E", () => {
518
518
fixture . detectChanges ( ) ;
519
519
520
520
assert . equal (
521
- "(ProxyViewContainer " +
522
- "(Label [text=one]), (Label [text=new]), (Label [text=two]), (Label [text=three]))" ,
521
+ "(proxyviewcontainer " +
522
+ "(label [text=one]), (label [text=new]), (label [text=two]), (label [text=three]))" ,
523
523
dumpView ( componentRoot , true ) ) ;
524
524
} ) ;
525
525
} ) ;
0 commit comments