]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/not-found/not-found.component.spec.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / not-found / not-found.component.spec.ts
CommitLineData
11fdf7f2 1import { ComponentFixture, TestBed } from '@angular/core/testing';
9f95a23c 2import { RouterTestingModule } from '@angular/router/testing';
11fdf7f2
TL
3
4import { configureTestBed } from '../../../testing/unit-test-helper';
5import { NotFoundComponent } from './not-found.component';
6
7describe('NotFoundComponent', () => {
8 let component: NotFoundComponent;
9 let fixture: ComponentFixture<NotFoundComponent>;
10
11 configureTestBed({
9f95a23c
TL
12 declarations: [NotFoundComponent],
13 imports: [RouterTestingModule]
11fdf7f2
TL
14 });
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(NotFoundComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25});