| Total Complexity | 3 |
| Complexity/F | 1 |
| Lines of Code | 12 |
| Function Count | 3 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import chai from 'chai'; |
||
| 2 | |||
| 3 | var strman = require('../transpiler/strman'); |
||
| 4 | var isString = strman.isString; |
||
| 5 | |||
| 6 | describe('Usage with require', () => { |
||
| 7 | describe('#require', () => { |
||
| 8 | it('should be true when value is true', () => { |
||
| 9 | chai.expect(isString('foo')).to.equal(true); |
||
| 10 | }); |
||
| 11 | }); |
||
| 12 | }); |
||
| 13 |