Completed
Push — master ( 6da7a0...d916e5 )
by Vitaly
31s
created

index.spec.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
c 2
b 0
f 0
nc 1
nop 1
dl 0
loc 6
rs 9.4285
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
});