Welcome to mirror list, hosted at ThFree Co, Russian Federation.

empty-option.js « test « brace-expansion « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e429121eab80590c10235d9479da0ffc8bc09c65 (plain)
1
2
3
4
5
6
7
8
9
10
var test = require('tape');
var expand = require('..');

test('empty option', function(t) {
  t.deepEqual(expand('-v{,,,,}'), [
    '-v', '-v', '-v', '-v', '-v'
  ]);
  t.end();
});