File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -438,8 +438,7 @@ describe('e2e: TransitionGroup', () => {
438
438
return document . querySelector ( '#container' ) ! . innerHTML
439
439
} )
440
440
} )
441
- // appear fixme
442
- expect ( beforeAppearSpy ) . not . toBeCalled ( )
441
+ expect ( beforeAppearSpy ) . toBeCalled ( )
443
442
expect ( onAppearSpy ) . not . toBeCalled ( )
444
443
expect ( afterAppearSpy ) . not . toBeCalled ( )
445
444
expect ( appearHtml ) . toBe (
@@ -448,15 +447,15 @@ describe('e2e: TransitionGroup', () => {
448
447
`<div class="test test-appear-active test-appear-from">c</div>`
449
448
)
450
449
await nextFrame ( )
451
- expect ( onAppearSpy ) . not . toBeCalled ( )
450
+ expect ( onAppearSpy ) . toBeCalled ( )
452
451
expect ( afterAppearSpy ) . not . toBeCalled ( )
453
452
expect ( await html ( '#container' ) ) . toBe (
454
453
`<div class="test test-appear-active test-appear-to">a</div>` +
455
454
`<div class="test test-appear-active test-appear-to">b</div>` +
456
455
`<div class="test test-appear-active test-appear-to">c</div>`
457
456
)
458
457
await transitionFinish ( )
459
- expect ( afterAppearSpy ) . not . toBeCalled ( )
458
+ expect ( afterAppearSpy ) . toBeCalled ( )
460
459
expect ( await html ( '#container' ) ) . toBe (
461
460
`<div class="test">a</div>` +
462
461
`<div class="test">b</div>` +
You can’t perform that action at this time.
0 commit comments