import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ForbiddenComponent } from './forbidden.component'; describe('ForbiddenComponent', () => { let component: ForbiddenComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ForbiddenComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ForbiddenComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });