mirror of
https://github.com/thangisme/notes.git
synced 2026-06-15 13:59:58 -04:00
Initial commit
This commit is contained in:
12
node_modules/yargs/test/whitespace.js
generated
vendored
Normal file
12
node_modules/yargs/test/whitespace.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var should = require('chai').should(),
|
||||
yargs = require('../');
|
||||
|
||||
describe('whitespace', function () {
|
||||
|
||||
it('should be whitespace', function () {
|
||||
var argv = yargs.parse([ '-x', '\t' ]);
|
||||
should.exist(argv);
|
||||
argv.should.have.property('x', '\t');
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user