refactor(compiler): move test/test_bindings to testing/test_bindings (#10081)

`test_bindings` is used in core test cases too, but `test` should be
private to the package, so it should live in `testing`.
This commit is contained in:
Jason Choi
2016-08-17 16:37:31 -07:00
committed by Kara
parent beb79e75bf
commit c48021ab97
5 changed files with 8 additions and 5 deletions

View File

@ -7,6 +7,7 @@
*/
import {CompilerConfig} from '@angular/compiler/src/config';
import {TEST_COMPILER_PROVIDERS} from '@angular/compiler/testing/test_bindings';
import {AfterContentChecked, AfterContentInit, AfterViewChecked, AfterViewInit, ChangeDetectionStrategy, Component, Directive, DoCheck, Injectable, NgModule, OnChanges, OnDestroy, OnInit, Pipe, SimpleChanges, ViewEncapsulation} from '@angular/core';
import {LIFECYCLE_HOOKS_VALUES} from '@angular/core/src/metadata/lifecycle_hooks';
import {TestBed} from '@angular/core/testing';
@ -17,7 +18,6 @@ import {stringify} from '../src/facade/lang';
import {CompileMetadataResolver} from '../src/metadata_resolver';
import {MalformedStylesComponent} from './metadata_resolver_fixture';
import {TEST_COMPILER_PROVIDERS} from './test_bindings';
export function main() {
describe('CompileMetadataResolver', () => {