mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-09-02 10:39:33 +00:00
eaf4c246b5
* main: Prepare for release 2.30.0. Node 20. (#369) Add another user: robolectric/robolectric (#352) Promote using ubuntu runner with KVM. (#366)
18 lines
312 B
JavaScript
18 lines
312 B
JavaScript
'use strict';
|
|
|
|
var parse = require('../');
|
|
var test = require('tape');
|
|
|
|
test('stops parsing on the first non-option when stopEarly is set', function (t) {
|
|
var argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], {
|
|
stopEarly: true,
|
|
});
|
|
|
|
t.deepEqual(argv, {
|
|
aaa: 'bbb',
|
|
_: ['ccc', '--ddd'],
|
|
});
|
|
|
|
t.end();
|
|
});
|