test/uri/index.spec.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 17
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 17
rs 10
wmc 2
mnd 0
bc 2
fnc 2
bpm 1
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A index.spec.js ➔ ??? 0 6 1
1
import test from 'ava';
2
import * as all from '../../src/uri';
3
import obj from '../../src/uri';
4
5
test('join imports are identical', t => {
6
    t.is(
7
        all.join,
8
        obj.join
9
    );
10
});
11
12
test('query imports are identical', t => {
13
    t.is(
14
        all.query,
15
        obj.query
16
    );
17
});