]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi/iscsi.component.spec.ts
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / iscsi / iscsi.component.spec.ts
index c7d533c186ddf3c022d2aeb0eb49cb24c29e2a00..b693c3d45f3678eb09e5d6c3cae562cbdbe72318 100644 (file)
@@ -1,5 +1,6 @@
 import { NO_ERRORS_SCHEMA } from '@angular/core';
 import { ComponentFixture, TestBed } from '@angular/core/testing';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
 
 import { of } from 'rxjs';
 
@@ -8,7 +9,6 @@ import { IscsiService } from '../../../shared/api/iscsi.service';
 import { CephShortVersionPipe } from '../../../shared/pipes/ceph-short-version.pipe';
 import { DimlessPipe } from '../../../shared/pipes/dimless.pipe';
 import { IscsiBackstorePipe } from '../../../shared/pipes/iscsi-backstore.pipe';
-import { ListPipe } from '../../../shared/pipes/list.pipe';
 import { RelativeDatePipe } from '../../../shared/pipes/relative-date.pipe';
 import { FormatterService } from '../../../shared/services/formatter.service';
 import { SharedModule } from '../../../shared/shared.module';
@@ -18,18 +18,18 @@ describe('IscsiComponent', () => {
   let component: IscsiComponent;
   let fixture: ComponentFixture<IscsiComponent>;
   let iscsiService: IscsiService;
-  let tcmuiscsiData;
+  let tcmuiscsiData: Record<string, any>;
 
   const fakeService = {
     overview: () => {
-      return new Promise(function() {
+      return new Promise(function () {
         return;
       });
     }
   };
 
   configureTestBed({
-    imports: [SharedModule],
+    imports: [BrowserAnimationsModule, SharedModule],
     declarations: [IscsiComponent],
     schemas: [NO_ERRORS_SCHEMA],
     providers: [
@@ -38,7 +38,6 @@ describe('IscsiComponent', () => {
       FormatterService,
       RelativeDatePipe,
       IscsiBackstorePipe,
-      ListPipe,
       { provide: IscsiService, useValue: fakeService },
       i18nProviders
     ]
@@ -68,8 +67,16 @@ describe('IscsiComponent', () => {
   it('should refresh with stats', () => {
     tcmuiscsiData.images.push({
       stats_history: {
-        rd_bytes: [[1540551220, 0.0], [1540551225, 0.0], [1540551230, 0.0]],
-        wr_bytes: [[1540551220, 0.0], [1540551225, 0.0], [1540551230, 0.0]]
+        rd_bytes: [
+          [1540551220, 0.0],
+          [1540551225, 0.0],
+          [1540551230, 0.0]
+        ],
+        wr_bytes: [
+          [1540551220, 0.0],
+          [1540551225, 0.0],
+          [1540551230, 0.0]
+        ]
       }
     });
     component.refresh();