fix(platform-browser/testing): clean up public api for platform-browser/testing (#9519)

Mostly, removing things that were never intended to be exported publicy.

BREAKING CHANGE:

The following are no longer publicly exported APIs. They were intended as internal
utilities and you should use your own util:

```
browserDetection,
dispatchEvent,
el,
normalizeCSS,
stringifyElement,
expect (and custom matchers for Jasmine)
```
This commit is contained in:
Julie Ralph
2016-06-23 16:42:25 -07:00
committed by GitHub
parent 894747c34c
commit 3d8eb8cbca
32 changed files with 32 additions and 79 deletions

View File

@ -9,7 +9,6 @@
import {TestComponentRenderer} from '@angular/compiler/testing';
import {Inject, Injectable} from '@angular/core';
import {DOCUMENT} from '@angular/platform-browser';
import {el} from '@angular/platform-browser/testing';
import {getDOM} from '../platform_browser_private';
@ -23,7 +22,8 @@ export class DOMTestComponentRenderer extends TestComponentRenderer {
constructor(@Inject(DOCUMENT) private _doc: any /** TODO #9100 */) { super(); }
insertRootElement(rootElId: string) {
let rootEl = el(`<div id="${rootElId}"></div>`);
let rootEl = <HTMLElement>getDOM().firstChild(
getDOM().content(getDOM().createTemplate(`<div id="${rootElId}"></div>`)));
// TODO(juliemr): can/should this be optional?
let oldRoots = getDOM().querySelectorAll(this._doc, '[id^=root]');