Completed
Branch master (93a1f2)
by Daniel
01:17
created

test/es6.test.js   A

Complexity

Total Complexity 3
Complexity/F 1

Size

Lines of Code 10
Function Count 3

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 10
rs 10
wmc 3
mnd 0
bc 3
fnc 3
bpm 1
cpm 1
noi 0
1
import chai from 'chai';
2
import {isString} from '../dist/strman';
3
4
describe('Usage with es6', () => {
5
    describe('#require', () => {
6
        it('should be true when value is true', () => {
7
            chai.expect(isString('foo')).to.equal(true);
8
        });
9
    });
10
});
11