]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/services/data-gateway.service.spec.ts
update ceph source to reef 18.2.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / services / data-gateway.service.spec.ts
CommitLineData
1e59de90
TL
1/* tslint:disable:no-unused-variable */
2
3import { HttpClientTestingModule } from '@angular/common/http/testing';
4import { inject, TestBed } from '@angular/core/testing';
5
6import { DataGatewayService } from './data-gateway.service';
7import { RouterTestingModule } from '@angular/router/testing';
8
9describe('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});