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

export class MockElementRef {
  nativeElement: {};
}

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