Fixed some tests

This commit is contained in:
Erik Tiekstra
2021-03-17 07:26:46 +01:00
committed by Erik Tiekstra
parent d36e00c5a7
commit dd743fd638
5 changed files with 29 additions and 14 deletions

View File

@@ -1,12 +1,14 @@
import { TestBed } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
import { NavigationModule } from './components/navigation/navigation.module';
import { SkipToContentModule } from './components/skip-to-content/skip-to-content.module';
describe('AppComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [AppComponent],
imports: [RouterTestingModule],
imports: [RouterTestingModule, SkipToContentModule, NavigationModule],
}).compileComponents();
});

View File

@@ -1,8 +1,7 @@
<div class="navigation">
<div class="navigation__logo-wrapper">
<a id="logo-heading" [routerLink]="['/']">
<a [routerLink]="['/']" aria-label="Till startsidan för FA Mina sidor">
<img src="assets/logo/fa-mina-sidor-dark.svg" class="navigation__logo" alt="" />
<span class="af__a11y-sr-only">Till startsidan för FA Mina sidor</span>
</a>
</div>
<ul class="navigation__list dafa__hide-on-print">

View File

@@ -1,4 +1,6 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { IconModule } from '@dafa-shared/components/icon/icon.module';
import { NavigationComponent } from './navigation.component';
describe('NavigationComponent', () => {
@@ -9,6 +11,7 @@ describe('NavigationComponent', () => {
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [NavigationComponent],
imports: [RouterTestingModule, IconModule],
}).compileComponents();
})
);

View File

@@ -1,17 +1,22 @@
import { DigiNgIconArrowLeftModule } from '@af/digi-ng/_icon/icon-arrow-left';
import { DigiNgTypographyBaseModule } from '@af/digi-ng/_typography/typography-base';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { HorizontalCenterModule } from '@dafa-shared/components/horizontal-center/horizontal-center.module';
import { PageNotFoundComponent } from './page-not-found.component';
describe('PageNotFoundComponent', () => {
let component: PageNotFoundComponent;
let fixture: ComponentFixture<PageNotFoundComponent>;
beforeEach(waitForAsync(() => {
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ PageNotFoundComponent ]
declarations: [PageNotFoundComponent],
imports: [RouterTestingModule, DigiNgTypographyBaseModule, DigiNgIconArrowLeftModule, HorizontalCenterModule],
}).compileComponents();
})
.compileComponents();
}));
);
beforeEach(() => {
fixture = TestBed.createComponent(PageNotFoundComponent);

View File

@@ -1,15 +1,21 @@
import { DigiNgTypographyBaseModule } from '@af/digi-ng/_typography/typography-base';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { HorizontalCenterModule } from '@dafa-shared/components/horizontal-center/horizontal-center.module';
import { StartComponent } from './start.component';
describe('StartComponent', () => {
let component: StartComponent;
let fixture: ComponentFixture<StartComponent>;
beforeEach(waitForAsync(() => {
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [StartComponent],
imports: [RouterTestingModule, DigiNgTypographyBaseModule, HorizontalCenterModule],
}).compileComponents();
}));
})
);
beforeEach(() => {
fixture = TestBed.createComponent(StartComponent);