chore: remove module aware bootstrap API (#10543)

This API was introduced post RC4, but needs to be removed
before RC5 as we have decided against it.
This commit is contained in:
Miško Hevery
2016-08-08 09:36:09 -07:00
committed by Alex Rickabaugh
parent a415613457
commit d4cceff0ef
4 changed files with 24 additions and 54 deletions

View File

@ -333,10 +333,7 @@ export function main() {
}));
it('should allow to pass schemas', inject([AsyncTestCompleter], (async: AsyncTestCompleter) => {
bootstrap(HelloCmpUsingCustomElement, {
providers: testProviders,
schemas: [CUSTOM_ELEMENTS_SCHEMA]
}).then((compRef) => {
bootstrap(HelloCmpUsingCustomElement, testProviders).then((compRef) => {
expect(el).toHaveText('hello world!');
async.done();
});