build(bazel): update bazel integration test to test secondary angular imports such as @angular/common/http (#24170)

PR Close #24170
This commit is contained in:
Greg Magolan
2018-05-29 15:35:48 -07:00
committed by Victor Berchet
parent d579b8ce05
commit 0e1919c2db
16 changed files with 1040 additions and 37 deletions

View File

@ -1,9 +1,14 @@
import {HelloWorldModule} from './hello-world/hello-world.module';
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {HttpClientModule} from '@angular/common/http';
import {CommonModule} from '@angular/common';
import {AppComponent} from './app.component';
import {HelloWorldModule} from './hello-world/hello-world.module';
@NgModule({
imports: [BrowserModule, HelloWorldModule]
imports: [CommonModule, BrowserModule, HttpClientModule, HelloWorldModule],
declarations: [AppComponent],
bootstrap: [AppComponent],
})
export class AppModule {}