]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/services/favicon.service.spec.ts
import ceph pacific 16.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / services / favicon.service.spec.ts
CommitLineData
f67539c2
TL
1import { HttpClientTestingModule } from '@angular/common/http/testing';
2import { TestBed } from '@angular/core/testing';
3
b3b6e05e 4import { CssHelper } from '~/app/shared/classes/css-helper';
f67539c2
TL
5import { configureTestBed } from '~/testing/unit-test-helper';
6import { FaviconService } from './favicon.service';
7
8describe('FaviconService', () => {
9 let service: FaviconService;
10
11 configureTestBed({
12 imports: [HttpClientTestingModule],
b3b6e05e 13 providers: [FaviconService, CssHelper]
f67539c2
TL
14 });
15
16 beforeEach(() => {
17 service = TestBed.inject(FaviconService);
18 });
19
20 it('should be created', () => {
21 expect(service).toBeTruthy();
22 });
23});