1var test = require('tape'); 2var expand = require('..'); 3 4test('ignores ${', function(t) { 5 t.deepEqual(expand('${1..3}'), ['${1..3}']); 6 t.deepEqual(expand('${a,b}${c,d}'), ['${a,b}${c,d}']); 7 t.deepEqual(expand('x${a,b}x${c,d}x'), ['x${a,b}x${c,d}x']); 8 t.end(); 9}); 10 11