]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/services/data-gateway.service.spec.ts
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / services / data-gateway.service.spec.ts
1 /* tslint:disable:no-unused-variable */
2
3 import { HttpClientTestingModule } from '@angular/common/http/testing';
4 import { inject, TestBed } from '@angular/core/testing';
5
6 import { DataGatewayService } from './data-gateway.service';
7 import { RouterTestingModule } from '@angular/router/testing';
8
9 describe('Service: DataGateway', () => {
10 beforeEach(() => {
11 TestBed.configureTestingModule({
12 imports: [HttpClientTestingModule, RouterTestingModule],
13 providers: [DataGatewayService]
14 });
15 });
16
17 it('should ...', inject([DataGatewayService], (service: DataGatewayService) => {
18 expect(service).toBeTruthy();
19 }));
20 });