David Fahlander
David Fahlander
I reacted exactly like @inexorabletash about this. It's not clear in [README](https://github.com/inexorabletash/indexeddb-promises/blob/master/README.md) what implications the "waiting" state has on that transactions, except by the code snippets, where it seems possible...
Hi, as I've implemented a promise based indexedDB wrapper, [Dexie.js](http://dexie.org), I just want to share that using Promise.catch() for preventing transactions from aborting has worked out very well, in compliance...
Just to clarify, changes table is automatically cleared from old changes once they have been synced and accepted by the remote server. It is not there to just clear the...
The ordering issue seems to be this: The shim's implementation of IDBIndex.getAll() ends up in a function named executeFetchIndexData() that does not apply an ORDER BY clause to the query....
Seems the travis tests failed. Was not able to test locally either. What I did for testing was building the shim and run the dexie tests on it. Still, there...
@brettz9 I think both Dexie and IndexedDBShim would benefit from integrating the dexie test suite with IndexedDBShim applied - both in browser and on node. This is what @aral is...
After the last commit, another 2 assertions make it through in the dexie tests. The last commit was that IDBIndex.getAll() should not just ORDER BY the queried key, but also...
@brettz9 thanks for guiding in how to run the tests. I'm trying to setup the test environment to debug it.
I've got no luck running the w3c tests. Installed the WPT according to their instructions. Then, the instructions in [docs/TESTING](https://github.com/axemclion/IndexedDBShim/blob/master/docs/TESTING.md) did not guide me in how to proceed from there...
Thanks a lot @brettz9. It definitely looks like an idea for me to try using the non-invasive file. These are things that our users do not have the time to...