-
Will it be good to have A+ test suite (https://github.com/promises-aplus/promises-tests) along with the existing one.
-
Promises/A+ promises are throw safe, which makes them very usable and is a great feature.
```
(...).then(function (data) {
throw new Error("Hello");
});
```
Does not throw globally, but rather t…
-
Q currently use old promises-aplus-tests 1.x. If upgrade to latest promises-aplus-tests@2.1.0, it will halt on 2.3.1: If `promise` and `x` refer to the same object, reject `promise` with a `TypeError'…
-
For some reasons I cannot install `mysql-js` on Mac (abbreviated):
```
$ npm install --save https://github.com/mysql/mysql-js/archive/2014-10-06.tar.gz
/
> mysql-js@0.7.3 preinstall /Users/elazutkin/…
-
Hi!
I'm the lead developer of [qwest](https://github.com/pyrsmk/qwest) and I've decided to implement PinkySwear for its promises. With ajax, even if it's strongly disencouraged, we can make `sync` re…
-
-
The benchmark results depend immensely on the performance of the `denodeify` implementation - results can change by an order of magnitude depending on the performance of `denodeify` (this also holds t…
-
https://code.google.com/p/v8/issues/detail?id=4162
---
Quoted from that bug:
https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-resolve-functions states that when resolving a Promise…
-
Making a ModelResponse support a Promise-style then method will make it possible for Falcor to be used with Promise libraries.
-
I'm writing a backend for an internal DB and I would like to use the test suite in here in my module so that I know that I'm doing the right thing.
Any thoughts on exposing this test suite in a way t…