Add spec for remote Promise

This commit is contained in:
Ryohei Ikegami 2015-07-31 14:32:07 +09:00
parent ddf2cfd48d
commit c7d1f4f6b2
2 changed files with 12 additions and 0 deletions

3
spec/fixtures/module/promise.js vendored Normal file
View file

@ -0,0 +1,3 @@
exports.toPromise = function (value) {
return Promise.resolve(value);
};