Skip to content
Snippets Groups Projects
Commit eded6b26 authored by Mike Pennisi's avatar Mike Pennisi
Browse files

Extend tests to fully cover invocation concerns

Update test metadata to accurately describe the more complete set of
assertions.
parent 5f2ba252
No related branches found
No related tags found
No related merge requests found
......@@ -3,10 +3,12 @@
/*---
info: >
Promise reaction jobs have predictable environment
[...]
6. Else, let handlerResult be Call(handler, undefined, «argument»).
es6id: S25.4.2.1_A3.1_T1
author: Sam Mikes
description: Promise.onFulfilled gets undefined as 'this'
description: >
"fulfilled" handler invoked correctly outside of strict mode
flags: [noStrict]
includes: [fnGlobalObject.js]
---*/
......@@ -25,6 +27,11 @@ var p = Promise.resolve(obj).then(function(arg) {
return;
}
if (arguments.length !== 1) {
$DONE('Expected handler function to be called with exactly 1 argument.');
return;
}
$DONE();
}, function() {
$DONE('The promise should not be rejected.');
......
......@@ -3,10 +3,12 @@
/*---
info: >
Promise reaction jobs have predictable environment
[...]
6. Else, let handlerResult be Call(handler, undefined, «argument»).
es6id: S25.4.2.1_A3.1_T2
author: Sam Mikes
description: Promise.onFulfilled gets undefined as 'this'
description: >
"fulfilled" handler invoked correctly in strict mode
flags: [onlyStrict]
---*/
......@@ -24,6 +26,11 @@ var p = Promise.resolve(obj).then(function(arg) {
return;
}
if (arguments.length !== 1) {
$DONE('Expected handler function to be called with exactly 1 argument.');
return;
}
$DONE();
}, function() {
$DONE('The promise should not be rejected.');
......
......@@ -3,12 +3,12 @@
/*---
info: >
Promise reaction jobs have predictable environment
'this' is global object in sloppy mode,
undefined in strict mode
[...]
6. Else, let handlerResult be Call(handler, undefined, «argument»).
es6id: S25.4.2.1_A3.2_T1
author: Sam Mikes
description: onRejected gets default 'this'
description: >
"rejected" handler invoked correctly outside of strict mode
flags: [noStrict]
includes: [fnGlobalObject.js]
---*/
......@@ -29,5 +29,10 @@ var p = Promise.reject(obj).then(function () {
return;
}
if (arguments.length !== 1) {
$DONE('Expected handler function to be called with exactly 1 argument.');
return;
}
$DONE();
});
......@@ -3,12 +3,12 @@
/*---
info: >
Promise reaction jobs have predictable environment
'this' is global object in sloppy mode,
undefined in strict mode
[...]
6. Else, let handlerResult be Call(handler, undefined, «argument»).
es6id: S25.4.2.1_A3.2_T2
author: Sam Mikes
description: onRejected gets default 'this'
description: >
"rejected" handler invoked correctly in strict mode
flags: [onlyStrict]
---*/
......@@ -28,5 +28,10 @@ var p = Promise.reject(obj).then(function () {
return;
}
if (arguments.length !== 1) {
$DONE('Expected handler function to be called with exactly 1 argument.');
return;
}
$DONE();
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment