summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js
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();
});