build: switch example e2e tests to bazel (#28402)
* No longer builds the example e2e tests using "tsc". The examples are now built with Bazel and can therefore be built with Ivy by using the `--define=compile=aot` switch. * No longer runs the example e2e tests using the protractor CLI. example e2e tests are executed with the Bazel protractor rule and can therefore run incrementally. NOTE: Unit tests found within the examples are still running within the legacy jobs. PR Close #28402
This commit is contained in:

committed by
Jason Aden

parent
66335c36e6
commit
98e5af1480
44
packages/examples/core/test_module.ts
Normal file
44
packages/examples/core/test_module.ts
Normal file
@ -0,0 +1,44 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {Component, NgModule} from '@angular/core';
|
||||
import {RouterModule} from '@angular/router';
|
||||
|
||||
import * as animationDslExample from './animation/ts/dsl/module';
|
||||
import * as diContentChildExample from './di/ts/contentChild/module';
|
||||
import * as diContentChildrenExample from './di/ts/contentChildren/module';
|
||||
import * as diViewChildExample from './di/ts/viewChild/module';
|
||||
import * as diViewChildrenExample from './di/ts/viewChildren/module';
|
||||
import * as testabilityWhenStableExample from './testability/ts/whenStable/module';
|
||||
|
||||
@Component({selector: 'example-app', template: '<router-outlet></router-outlet>'})
|
||||
export class TestsAppComponent {
|
||||
}
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
animationDslExample.AppModule, diContentChildExample.AppModule,
|
||||
diContentChildrenExample.AppModule, diViewChildExample.AppModule,
|
||||
diViewChildrenExample.AppModule, testabilityWhenStableExample.AppModule,
|
||||
|
||||
// Router configuration so that the individual e2e tests can load their
|
||||
// app components.
|
||||
RouterModule.forRoot([
|
||||
{path: 'animation/dsl', component: animationDslExample.AppComponent},
|
||||
{path: 'di/contentChild', component: diContentChildExample.AppComponent},
|
||||
{path: 'di/contentChildren', component: diContentChildrenExample.AppComponent},
|
||||
{path: 'di/viewChild', component: diViewChildExample.AppComponent},
|
||||
{path: 'di/viewChildren', component: diViewChildrenExample.AppComponent},
|
||||
{path: 'testability/whenStable', component: testabilityWhenStableExample.AppComponent},
|
||||
])
|
||||
],
|
||||
declarations: [TestsAppComponent],
|
||||
bootstrap: [TestsAppComponent]
|
||||
})
|
||||
export class TestsAppModule {
|
||||
}
|
Reference in New Issue
Block a user