refactor(animations): make modules and bundles into plural Animations (#14695)
This commit is contained in:

committed by
Igor Minar

parent
32c2fd5c9f
commit
93ddd38107
@ -11,7 +11,7 @@
|
||||
* @description
|
||||
* Entry point for all animation APIs of the animation browser package.
|
||||
*/
|
||||
export {BrowserAnimationModule} from './browser_animation_module';
|
||||
export {NoopBrowserAnimationModule} from './noop_browser_animation_module';
|
||||
export {BrowserAnimationsModule} from './browser_animations_module';
|
||||
export {NoopAnimationsModule} from './noop_animations_module';
|
||||
export {AnimationDriver} from './render/animation_driver';
|
||||
export * from './private_export';
|
||||
|
@ -54,5 +54,5 @@ export function instantiateRendererFactory(
|
||||
}
|
||||
]
|
||||
})
|
||||
export class BrowserAnimationModule {
|
||||
export class BrowserAnimationsModule {
|
||||
}
|
@ -30,5 +30,5 @@ export function instantiateRendererFactory(
|
||||
}
|
||||
]
|
||||
})
|
||||
export class NoopBrowserAnimationModule {
|
||||
export class NoopAnimationsModule {
|
||||
}
|
@ -10,13 +10,13 @@ import {USE_VIEW_ENGINE} from '@angular/compiler/src/config';
|
||||
import {Component} from '@angular/core';
|
||||
import {TestBed} from '@angular/core/testing';
|
||||
import {ɵAnimationEngine} from '@angular/platform-browser/animations';
|
||||
import {NoopBrowserAnimationModule} from '../src/noop_browser_animation_module';
|
||||
import {NoopAnimationsModule} from '../src/noop_animations_module';
|
||||
import {NoopAnimationEngine} from '../src/render/noop_animation_engine';
|
||||
|
||||
export function main() {
|
||||
describe('NoopBrowserAnimationModule', () => {
|
||||
describe('NoopAnimationsModule', () => {
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({imports: [NoopBrowserAnimationModule]});
|
||||
TestBed.configureTestingModule({imports: [NoopAnimationsModule]});
|
||||
TestBed.configureCompiler({
|
||||
useJit: true,
|
||||
providers: [{
|
Reference in New Issue
Block a user