Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | 1x 2x | import { APP_BASE_HREF } from '@angular/common';
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
import { provideHttpClientTesting } from '@angular/common/http/testing';
import { ModuleWithProviders, NgModule, NgZone, Provider } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { BrowserTestingModule } from '@angular/platform-browser/testing';
import { RouterModule } from '@angular/router';
import { AppMaterialModule } from '@app/client-material';
import { documentProvider, IWebClientAppEnvironment, WEB_CLIENT_APP_ENV, windowProvider } from '@app/client-util';
import { EffectsModule } from '@ngrx/effects';
import { NavigationActionTiming, routerReducer, StoreRouterConnectingModule } from '@ngrx/router-store';
import { StoreModule } from '@ngrx/store';
import { AppTestingComponent } from './components/testing/testing.component.mock';
import { dialogRefMockProvider } from './refs/dialog-ref.mock';
import { overlayRefMockProvider } from './refs/overlay-ref.mock';
import { matSnackbarRefMockProvider } from './refs/snackbar-ref.mock';
export const testingEnvironment: IWebClientAppEnvironment = {
production: false,
platform: 'web',
appName: 'Testing Environment',
description: 'Testing description',
api: window.location.origin.includes('localhost') ? 'http://localhost:8080/api' : `${window.location.origin}/api`,
envoyUrl: '',
sentry: {
env: 'unit-testing',
dsn: '',
tracingOrigins: [],
tracesSampleRate: 0.0,
},
meta: {
version: 'N/A',
},
};
export const mocksCoreModuleProviders: Provider[] = [
dialogRefMockProvider,
overlayRefMockProvider,
matSnackbarRefMockProvider,
{
provide: APP_BASE_HREF,
useValue: '/',
},
windowProvider,
documentProvider,
{
provide: WEB_CLIENT_APP_ENV,
useValue: testingEnvironment,
},
{
provide: NgZone,
useFactory: () => new NgZone({ enableLongStackTrace: false, shouldCoalesceEventChangeDetection: false }),
},
];
@NgModule({
declarations: [AppTestingComponent],
exports: [BrowserTestingModule, FormsModule, ReactiveFormsModule, AppMaterialModule, RouterModule, AppTestingComponent],
imports: [
BrowserTestingModule,
FormsModule,
ReactiveFormsModule,
RouterModule.forRoot([]),
AppMaterialModule.forRoot(),
StoreModule.forRoot({ router: routerReducer }),
EffectsModule.forRoot(),
StoreRouterConnectingModule.forRoot({
navigationActionTiming: NavigationActionTiming.PostActivation,
}),
],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()],
})
export class AppMocksCoreModule {
public static forRoot(): ModuleWithProviders<AppMocksCoreModule> {
return {
ngModule: AppMocksCoreModule,
providers: [...mocksCoreModuleProviders],
};
}
}
|