You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
545 B
26 lines
545 B
"use strict";
|
|
|
|
module.exports = function (t, a) {
|
|
if (typeof Promise !== "function") return null;
|
|
return {
|
|
Success: function (d) {
|
|
t.call(new Promise(function (resolve) { resolve("foo"); }), function (error, value) {
|
|
a(error, null);
|
|
a(value, "foo");
|
|
d();
|
|
});
|
|
},
|
|
Failure: function (d) {
|
|
var error = new Error("Rejection");
|
|
t.call(new Promise(function (resolve, reject) { reject(error); }), function (
|
|
passedError,
|
|
value
|
|
) {
|
|
a(passedError, error);
|
|
a(value, undefined);
|
|
d();
|
|
});
|
|
}
|
|
};
|
|
};
|