refactor(animations): make modules and bundles into plural Animations (#14695)

This commit is contained in:
Matias Niemelä
2017-02-24 09:36:58 -08:00
committed by Igor Minar
parent 32c2fd5c9f
commit 93ddd38107
7 changed files with 14 additions and 14 deletions

View File

@ -8,7 +8,7 @@
import {AUTO_STYLE, AnimationEvent, animate, keyframes, state, style, transition, trigger} from '@angular/animations';
import {USE_VIEW_ENGINE} from '@angular/compiler/src/config';
import {Component, HostBinding, HostListener, ViewChild} from '@angular/core';
import {AnimationDriver, BrowserAnimationModule, ɵAnimationEngine} from '@angular/platform-browser/animations';
import {AnimationDriver, BrowserAnimationsModule, ɵAnimationEngine} from '@angular/platform-browser/animations';
import {MockAnimationDriver, MockAnimationPlayer} from '@angular/platform-browser/animations/testing';
import {getDOM} from '@angular/platform-browser/src/dom/dom_adapter';
import {TestBed} from '../../testing';
@ -44,7 +44,7 @@ function declareTests({useJit}: {useJit: boolean}) {
resetLog();
TestBed.configureTestingModule({
providers: [{provide: AnimationDriver, useClass: MockAnimationDriver}],
imports: [BrowserAnimationModule]
imports: [BrowserAnimationsModule]
});
});