We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546c8bb commit 0ef150fCopy full SHA for 0ef150f
tests/integration/test.viewadapter.js
@@ -55,6 +55,10 @@ viewAdapters.forEach(viewAdapter => {
55
return;
56
}
57
58
+ if (db.adapter !== 'leveldb' && db.adapter !== 'idb') {
59
+ return;
60
+ }
61
+
62
await db.bulkDocs(docs);
63
await db.query('index', { key: 'abc', include_docs: true });
64
@@ -93,6 +97,10 @@ viewAdapters.forEach(viewAdapter => {
93
97
it('Create pouch with no view adapters', async function () {
94
98
const db = new PouchDB(dbs.name);
95
99
100
101
102
103
96
104
105
106
0 commit comments