projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c00ad155fe6760130beb896ca80ba70b446e0f62
[platform/framework/web/crosswalk-tizen.git]
/
1
var test = require('tape');
2
var expand = require('..');
3
4
test('order', function(t) {
5
t.deepEqual(expand('a{d,c,b}e'), [
6
'ade', 'ace', 'abe'
7
]);
8
t.end();
9
});
10