move esnext tests into their own fixtures folder

This commit is contained in:
Sebastian McKenzie
2015-01-05 10:18:42 +11:00
parent 7f87ca0d43
commit ffbfa5281b
62 changed files with 3 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
var object = {
list: [],
append: function(...items) {
this.list.push(...items);
}
};
object.append(1, 2, ...[3, 4]);
assert.deepEqual(object.list, [1, 2, 3, 4]);