Skip to content
Snippets Groups Projects
Commit 5717bf5b authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add router

parent 07bf2eaa
No related branches found
No related tags found
1 merge request!573Navigation Service
import {provideHttpClient} from '@angular/common/http';
import {ComponentFixture, TestBed} from '@angular/core/testing'; import {ComponentFixture, TestBed} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations'; import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {provideRouter} from '@angular/router'; import {provideRouter} from '@angular/router';
...@@ -11,7 +12,11 @@ describe('Error404Component', () => { ...@@ -11,7 +12,11 @@ describe('Error404Component', () => {
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
imports: [Error404Component], imports: [Error404Component],
providers: [provideRouter([]), provideNoopAnimations()], providers: [
provideRouter([]),
provideNoopAnimations(),
provideHttpClient(),
],
}).compileComponents(); }).compileComponents();
}); });
......
import {provideHttpClient} from '@angular/common/http';
import {ComponentFixture, TestBed} from '@angular/core/testing'; import {ComponentFixture, TestBed} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations'; import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {provideRouter} from '@angular/router'; import {provideRouter} from '@angular/router';
...@@ -11,7 +12,11 @@ describe('Error410Component', () => { ...@@ -11,7 +12,11 @@ describe('Error410Component', () => {
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
imports: [Error410Component], imports: [Error410Component],
providers: [provideRouter([]), provideNoopAnimations()], providers: [
provideRouter([]),
provideNoopAnimations(),
provideHttpClient(),
],
}).compileComponents(); }).compileComponents();
}); });
......
import {provideHttpClient} from '@angular/common/http';
import {ComponentFixture, TestBed} from '@angular/core/testing'; import {ComponentFixture, TestBed} from '@angular/core/testing';
import {provideNoopAnimations} from '@angular/platform-browser/animations'; import {provideNoopAnimations} from '@angular/platform-browser/animations';
import {provideRouter} from '@angular/router'; import {provideRouter} from '@angular/router';
...@@ -11,7 +12,11 @@ describe('Error500Component', () => { ...@@ -11,7 +12,11 @@ describe('Error500Component', () => {
beforeEach(async () => { beforeEach(async () => {
await TestBed.configureTestingModule({ await TestBed.configureTestingModule({
imports: [Error500Component], imports: [Error500Component],
providers: [provideRouter([]), provideNoopAnimations()], providers: [
provideRouter([]),
provideNoopAnimations(),
provideHttpClient(),
],
}).compileComponents(); }).compileComponents();
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment