2019-01-28 20:59:25 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-01-28 20:59:25 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2019-01-28 20:59:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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';
|
|
|
|
|
|
2024-10-11 10:32:52 +00:00
|
|
|
@Component({
|
|
|
|
|
selector: 'example-app',
|
|
|
|
|
template: '<router-outlet></router-outlet>',
|
|
|
|
|
standalone: false,
|
|
|
|
|
})
|
2019-01-28 20:59:25 +00:00
|
|
|
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 {}
|