src/tools/__tests__/index.js   A
last analyzed

Complexity

Total Complexity 4
Complexity/F 1

Size

Lines of Code 15
Function Count 4

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 4
eloc 8
mnd 0
bc 0
fnc 4
dl 0
loc 15
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
import { logger, metrics, tracer } from '../index';
2
3
describe('import', () => {
4
  it('logger', () => {
5
    expect(typeof logger).toBe('object');
6
  });
7
8
  it('metrics', () => {
9
    expect(typeof metrics).toBe('object');
10
  });
11
12
  it('tracer', () => {
13
    expect(typeof tracer).toBe('object');
14
  });
15
});
16