summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/directives/dimless-binary-per-second.directive.spec.ts
blob: 858becc450c1479a2cc3fe3024651a6bc5b7c3b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { DimlessBinaryPerSecondDirective } from './dimless-binary-per-second.directive';

export class MockElementRef {
  nativeElement: {};
}

describe('DimlessBinaryPerSecondDirective', () => {
  it('should create an instance', () => {
    const directive = new DimlessBinaryPerSecondDirective(new MockElementRef(), null, null, null);
    expect(directive).toBeTruthy();
  });
});