mirror of
https://gitea.com/actions/stale.git
synced 2026-07-18 11:34:10 +00:00
0649bd8119
* Bumping actions/github to 2.2.0 for GHES * Husky commit correct node modules
10 lines
238 B
JavaScript
10 lines
238 B
JavaScript
var parse = require('../');
|
|
var test = require('tape');
|
|
|
|
test('parse with modifier functions' , function (t) {
|
|
t.plan(1);
|
|
|
|
var argv = parse([ '-b', '123' ], { boolean: 'b' });
|
|
t.deepEqual(argv, { b: true, _: [123] });
|
|
});
|