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.
32 lines
584 B
32 lines
584 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(); |
|
} |
|
); |
|
} |
|
}; |
|
};
|
|
|