23 lines
468 B
JavaScript
23 lines
468 B
JavaScript
|
// tests from promises-es6-tests
|
||
|
(function () {
|
||
|
'use strict';
|
||
|
|
||
|
if (typeof Promise === 'undefined') {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
describe('Promises/ES6 Tests', function () {
|
||
|
|
||
|
// an adapter that sets up global.Promise
|
||
|
// since it's already set up, empty functions will suffice
|
||
|
var adapter = {
|
||
|
defineGlobalPromise: function () {
|
||
|
},
|
||
|
removeGlobalPromise: function () {
|
||
|
}
|
||
|
};
|
||
|
|
||
|
require('promises-es6-tests').mocha(adapter);
|
||
|
});
|
||
|
}());
|