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 ef2620e commit 86fc11aCopy full SHA for 86fc11a
src/adapters/__tests__/commonTests.js
@@ -37,7 +37,11 @@ export default () => [
37
// expect(() => makeAdapter({})).toThrowError(/missing migrations/)
38
39
expect(() => makeAdapter({ migrationsExperimental: [] })).toThrow(
40
- /migrationsExperimental has been renamed/,
+ /LokiJSAdapter `migrationsExperimental` option has been renamed to `migrations`/,
41
+ )
42
+
43
+ expect(() => makeAdapter({ experimentalUseIncrementalIndexedDB: false })).toThrow(
44
+ /LokiJSAdapter `experimentalUseIncrementalIndexedDB` option has been renamed/,
45
)
46
47
expect(() => adapterWithMigrations({ migrations: [] })).toThrow(/use schemaMigrations()/)
0 commit comments