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