| Total Complexity | 3 |
| Complexity/F | 1 |
| Lines of Code | 10 |
| Function Count | 3 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 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 |