(argv)
| 2 | import OptionParser from './../src/OptionParser'; |
| 3 | |
| 4 | function parse(argv) { |
| 5 | return new OptionParser().parse(['node', 'script.js'].concat(argv)); |
| 6 | } |
| 7 | |
| 8 | describe('Command Line Interface', () => { |
| 9 | it('when no transforms given, throws error', () => { |
no test coverage detected
searching dependent graphs…