aboutsummaryrefslogtreecommitdiff
path: root/packages/idb-bridge/src/MemoryBackend.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-02-10 19:52:45 +0100
committerFlorian Dold <florian@dold.me>2022-02-10 19:53:44 +0100
commit5ff3b44550d4f5ab9a20d85dbf4387d455ebb862 (patch)
tree7db62fdc0a87338a4e7fc8dcb51f80fb00d789e4 /packages/idb-bridge/src/MemoryBackend.ts
parent1de423834d0a9ca34b10de39e7e51570415f1ed5 (diff)
downloadwallet-core-5ff3b44550d4f5ab9a20d85dbf4387d455ebb862.tar.xz
idb-bridge: update tests for ava 4.x
Diffstat (limited to 'packages/idb-bridge/src/MemoryBackend.ts')
-rw-r--r--packages/idb-bridge/src/MemoryBackend.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/idb-bridge/src/MemoryBackend.ts b/packages/idb-bridge/src/MemoryBackend.ts
index b37dd376d..3919cdf97 100644
--- a/packages/idb-bridge/src/MemoryBackend.ts
+++ b/packages/idb-bridge/src/MemoryBackend.ts
@@ -26,20 +26,20 @@ import {
ResultLevel,
StoreLevel,
RecordStoreResponse,
-} from "./backend-interface";
+} from "./backend-interface.js";
import {
structuredClone,
structuredEncapsulate,
structuredRevive,
-} from "./util/structuredClone";
-import { ConstraintError, DataError } from "./util/errors";
-import BTree, { ISortedMapF, ISortedSetF } from "./tree/b+tree";
-import { compareKeys } from "./util/cmp";
-import { StoreKeyResult, makeStoreKeyValue } from "./util/makeStoreKeyValue";
-import { getIndexKeys } from "./util/getIndexKeys";
-import { openPromise } from "./util/openPromise";
-import { IDBKeyRange, IDBTransactionMode, IDBValidKey } from "./idbtypes";
-import { BridgeIDBKeyRange } from "./bridge-idb";
+} from "./util/structuredClone.js";
+import { ConstraintError, DataError } from "./util/errors.js";
+import BTree, { ISortedMapF, ISortedSetF } from "./tree/b+tree.js";
+import { compareKeys } from "./util/cmp.js";
+import { StoreKeyResult, makeStoreKeyValue } from "./util/makeStoreKeyValue.js";
+import { getIndexKeys } from "./util/getIndexKeys.js";
+import { openPromise } from "./util/openPromise.js";
+import { IDBKeyRange, IDBTransactionMode, IDBValidKey } from "./idbtypes.js";
+import { BridgeIDBKeyRange } from "./bridge-idb.js";
type Key = IDBValidKey;
type Value = unknown;