* Fix workflow * Trigger * [auto] Update compiled version * [auto] Commit modules * Push Windows changes * Fix * [auto] Update compiled version * Try removing cwd * [auto] Update compiled version * Try with path module * [auto] Update compiled version * Fix path * [auto] Update compiled version * Use raw path * [auto] Update compiled version * Other path * [auto] Update compiled version * Avoid @action/exec * [auto] Update compiled version * test * [auto] Update compiled version * test * [auto] Update compiled version * test * [auto] Update compiled version * test * [auto] Update compiled version * Try with shelljs * [auto] Update compiled version * Fix my stupidity * Copy scripts to local dir * [auto] Update compiled version * Still use path * [auto] Update compiled version * Delete entrypoint.sh * [auto] Update compiled version * Make file executable * [auto] Update compiled version * Try using bash * [auto] Update compiled version
37 lines
909 B
JavaScript
37 lines
909 B
JavaScript
var parse = require('../');
|
|
var test = require('tape');
|
|
|
|
test('nums', function (t) {
|
|
var argv = parse([
|
|
'-x', '1234',
|
|
'-y', '5.67',
|
|
'-z', '1e7',
|
|
'-w', '10f',
|
|
'--hex', '0xdeadbeef',
|
|
'789'
|
|
]);
|
|
t.deepEqual(argv, {
|
|
x : 1234,
|
|
y : 5.67,
|
|
z : 1e7,
|
|
w : '10f',
|
|
hex : 0xdeadbeef,
|
|
_ : [ 789 ]
|
|
});
|
|
t.deepEqual(typeof argv.x, 'number');
|
|
t.deepEqual(typeof argv.y, 'number');
|
|
t.deepEqual(typeof argv.z, 'number');
|
|
t.deepEqual(typeof argv.w, 'string');
|
|
t.deepEqual(typeof argv.hex, 'number');
|
|
t.deepEqual(typeof argv._[0], 'number');
|
|
t.end();
|
|
});
|
|
|
|
test('already a number', function (t) {
|
|
var argv = parse([ '-x', 1234, 789 ]);
|
|
t.deepEqual(argv, { x : 1234, _ : [ 789 ] });
|
|
t.deepEqual(typeof argv.x, 'number');
|
|
t.deepEqual(typeof argv._[0], 'number');
|
|
t.end();
|
|
});
|