angular/integration/cli-elements-universal/src/app/app.server.module.ts
Alan Agius 6e1e70d3f1 ci: use application builder for integration tests (#55660)
This updates the integration tests to use the application builder.

PR Close #55660
2024-05-03 11:21:06 -07:00

11 lines
297 B
TypeScript

import {NgModule} from '@angular/core';
import {ServerModule} from '@angular/platform-server';
import {AppModule} from './app.module';
import {AppComponent} from './app.component';
@NgModule({
bootstrap: [AppComponent],
imports: [AppModule, ServerModule],
})
export class AppServerModule {}