packages/store/internals/testing/src/helpers/ngxs-test.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { ApplicationRef, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { NgxsTestComponent } from './ngxs-test.component';

@NgModule({
  imports: [BrowserModule],
  declarations: [NgxsTestComponent]
})
export class NgxsTestModule {
  public static ngDoBootstrap(app: ApplicationRef): void {
    app.bootstrap(NgxsTestComponent);
  }
}