mirror of https://github.com/tc39/test262.git
Generate tests
This commit is contained in:
parent
e6b47d7738
commit
43c68163c0
|
@ -42,7 +42,7 @@ Object.defineProperty(o, Symbol('foo'), { get: () => { calls.push("Symbol(foo)")
|
|||
var callCount = 0;
|
||||
|
||||
(function(obj) {
|
||||
assert(compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]));
|
||||
assert.compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]);
|
||||
assert.sameValue(Object.keys(obj).length, 3);
|
||||
callCount += 1;
|
||||
}.apply(null, [{...o}]));
|
||||
|
|
|
@ -27,7 +27,7 @@ var vals = o;
|
|||
|
||||
result = {...rest} = vals;
|
||||
|
||||
assert(compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]));
|
||||
assert.compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]);
|
||||
assert.sameValue(Object.keys(rest).length, 3);
|
||||
|
||||
assert.sameValue(result, vals);
|
||||
|
|
|
@ -41,7 +41,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -41,7 +41,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -40,7 +40,7 @@ Object.defineProperty(o, Symbol('foo'), { get: () => { calls.push("Symbol(foo)")
|
|||
var callCount = 0;
|
||||
|
||||
(function(obj) {
|
||||
assert(compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]));
|
||||
assert.compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]);
|
||||
assert.sameValue(Object.keys(obj).length, 3);
|
||||
callCount += 1;
|
||||
}({...o}));
|
||||
|
|
|
@ -48,7 +48,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -48,7 +48,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -53,7 +53,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -56,7 +56,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -49,7 +49,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -52,7 +52,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -52,4 +52,4 @@ verifyProperty(c, y, {
|
|||
configurable: true
|
||||
});
|
||||
|
||||
assert(compareArray(x, ["a", "b", "c"]));
|
||||
assert.compareArray(x, ["a", "b", "c"]);
|
||||
|
|
|
@ -52,4 +52,4 @@ verifyProperty(c, "y", {
|
|||
configurable: true
|
||||
});
|
||||
|
||||
assert(compareArray(x, ["a", "b", "c", "d"]));
|
||||
assert.compareArray(x, ["a", "b", "c", "d"]);
|
||||
|
|
|
@ -44,7 +44,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -44,7 +44,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -36,7 +36,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -36,7 +36,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -39,7 +39,7 @@ Object.defineProperty(o, Symbol('foo'), { get: () => { calls.push("Symbol(foo)")
|
|||
var callCount = 0;
|
||||
|
||||
new function(obj) {
|
||||
assert(compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]));
|
||||
assert.compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]);
|
||||
assert.sameValue(Object.keys(obj).length, 3);
|
||||
callCount += 1;
|
||||
}({...o});
|
||||
|
|
|
@ -41,7 +41,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -38,7 +38,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -38,7 +38,7 @@ var callCount = 0;
|
|||
|
||||
class Test262ParentClass {
|
||||
constructor(obj) {
|
||||
assert(compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]));
|
||||
assert.compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]);
|
||||
assert.sameValue(Object.keys(obj).length, 3);
|
||||
callCount += 1;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -48,7 +48,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -48,7 +48,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -53,7 +53,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -56,7 +56,7 @@ item.then(({ done, value }) => {
|
|||
item = iter.next(value);
|
||||
|
||||
item.then(({ done, value }) => {
|
||||
assert(compareArray(value, arr));
|
||||
assert.compareArray(value, arr);
|
||||
assert.sameValue(done, false);
|
||||
}).then($DONE, $DONE);
|
||||
}).catch($DONE);
|
||||
|
|
|
@ -49,7 +49,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -52,7 +52,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -52,4 +52,4 @@ verifyProperty(c, y, {
|
|||
configurable: true
|
||||
});
|
||||
|
||||
assert(compareArray(x, ["a", "b", "c"]));
|
||||
assert.compareArray(x, ["a", "b", "c"]);
|
||||
|
|
|
@ -52,4 +52,4 @@ verifyProperty(c, "y", {
|
|||
configurable: true
|
||||
});
|
||||
|
||||
assert(compareArray(x, ["a", "b", "c", "d"]));
|
||||
assert.compareArray(x, ["a", "b", "c", "d"]);
|
||||
|
|
|
@ -44,7 +44,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -44,7 +44,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
|
@ -34,7 +34,7 @@ Object.defineProperty(o, Symbol('foo'), { get: () => { calls.push("Symbol(foo)")
|
|||
var counter = 0;
|
||||
|
||||
for ({...rest} of [o]) {
|
||||
assert(compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]));
|
||||
assert.compareArray(calls, [1, 'z', 'a', "Symbol(foo)"]);
|
||||
assert.sameValue(Object.keys(rest).length, 3);
|
||||
counter += 1;
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ iter.next(false);
|
|||
item = iter.next(['a', 'b', 'c']);
|
||||
item = iter.next(item.value);
|
||||
|
||||
assert(compareArray(item.value, arr));
|
||||
assert.compareArray(item.value, arr);
|
||||
assert.sameValue(item.done, false);
|
||||
|
||||
assert.sameValue(callCount, 1);
|
||||
|
|
Loading…
Reference in New Issue