Ivan Buryak
Ivan Buryak
So, I can do the following: 1. Copy `getPersistendStorage` from `performance.test.ts` config to `config.ts`, so that config will have both getStorage and getPersistendStorage (there is no persisted storage for Dexie...
@pubkey I've copied config from `performance.test.ts`. Please have a look
- Rebased on the latest master (lokijs migration issue is gone) - Added test for running migrations with multiple instances (loki fails)
Yes, I'll rebase and see what's changed today
@pubkey I rebased the branch and skipped attachments tests for lokijs. Let me know if there is anything else to improve
Migration seems to be working ok. The exception happens after the migration when an actual query on a second database happens: `const doc = await col2.findOne().exec();` So I guess it's...
Unfortunately didn't have time for it yet
@pubkey Can we copy that setup from https://github.com/pubkey/rxdb/blob/master/test/performance.test.ts#L64-L68 At least I tried running tests with lokijs adapter set up like that and it looks like it is failing in the...
Works perfectly. Thank you very much! @pubkey One more question. If I open two browser tabs simultaneously and then run migration in one of them then: 1. With lokijs it...
> Hmm this should work. > Maybe you can reproduce this when https://github.com/pubkey/rxdb/pull/3752 is done Is there already a test with multiple instances from which I can borrow setup? Not...