| Total Complexity | 2 |
| Complexity/F | 1 |
| Lines of Code | 10 |
| Function Count | 2 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | import {expect} from 'chai'; |
||
| 2 | import convert from '../../src/commands/convert'; |
||
| 3 | |||
| 4 | describe('command convert', () => { |
||
| 5 | it('should throw an error', () => { |
||
| 6 | expect(convert) |
||
| 7 | .to |
||
| 8 | .throw('To implement'); |
||
| 9 | }); |
||
| 10 | }); |
||
| 11 |