|
8 | 8 | import {animate, AnimationBuilder, style, ɵBrowserAnimationBuilder as BrowserAnimationBuilder} from '@angular/animations';
|
9 | 9 | import {AnimationDriver} from '@angular/animations/browser';
|
10 | 10 | import {MockAnimationDriver} from '@angular/animations/browser/testing';
|
11 |
| -import {Component, ViewChild} from '@angular/core'; |
| 11 | +import {DOCUMENT} from '@angular/common'; |
| 12 | +import {Component, NgZone, RendererFactory2, ViewChild} from '@angular/core'; |
12 | 13 | import {fakeAsync, flushMicrotasks, TestBed} from '@angular/core/testing';
|
| 14 | +import {ɵDomRendererFactory2 as DomRendererFactory2} from '@angular/platform-browser'; |
13 | 15 | import {BrowserDynamicTestingModule, platformBrowserDynamicTesting} from '@angular/platform-browser-dynamic/testing';
|
14 | 16 | import {NoopAnimationsModule} from '@angular/platform-browser/animations';
|
15 |
| - |
| 17 | +import {ɵAsyncAnimationRendererFactory as AsyncAnimationRendererFactory} from '@angular/platform-browser/animations/async'; |
16 | 18 |
|
17 | 19 | describe('BrowserAnimationBuilder', () => {
|
18 | 20 | if (isNode) {
|
@@ -236,4 +238,47 @@ describe('BrowserAnimationBuilder', () => {
|
236 | 238 | [BrowserDynamicTestingModule, NoopAnimationsModule], platformBrowserDynamicTesting());
|
237 | 239 | });
|
238 | 240 | });
|
| 241 | + |
| 242 | + describe('with Animations async', () => { |
| 243 | + beforeEach(() => { |
| 244 | + TestBed.configureTestingModule({ |
| 245 | + providers: [ |
| 246 | + { |
| 247 | + provide: RendererFactory2, |
| 248 | + useFactory: (doc: Document, renderer: DomRendererFactory2, zone: NgZone) => { |
| 249 | + // Using a empty promise to prevent switching to the delegate to AnimationRenderer |
| 250 | + return new AsyncAnimationRendererFactory( |
| 251 | + doc, renderer, zone, 'noop', new Promise<any>(() => {})); |
| 252 | + }, |
| 253 | + deps: [DOCUMENT, DomRendererFactory2, NgZone], |
| 254 | + }, |
| 255 | + ] |
| 256 | + }); |
| 257 | + }); |
| 258 | + |
| 259 | + it('should be able to build', () => { |
| 260 | + @Component({ |
| 261 | + selector: 'ani-cmp', |
| 262 | + template: '...', |
| 263 | + }) |
| 264 | + class Cmp { |
| 265 | + @ViewChild('target') public target: any; |
| 266 | + |
| 267 | + constructor(public builder: AnimationBuilder) {} |
| 268 | + |
| 269 | + build() { |
| 270 | + const definition = this.builder.build([style({'transform': `rotate(0deg)`})]); |
| 271 | + |
| 272 | + return definition.create(this.target); |
| 273 | + } |
| 274 | + } |
| 275 | + |
| 276 | + TestBed.configureTestingModule({declarations: [Cmp]}); |
| 277 | + |
| 278 | + const fixture = TestBed.createComponent(Cmp); |
| 279 | + const cmp = fixture.componentInstance; |
| 280 | + fixture.detectChanges(); |
| 281 | + cmp.build(); |
| 282 | + }); |
| 283 | + }); |
239 | 284 | });
|
0 commit comments