From 5ff3b44550d4f5ab9a20d85dbf4387d455ebb862 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 10 Feb 2022 19:52:45 +0100 Subject: idb-bridge: update tests for ava 4.x --- packages/idb-bridge/src/MemoryBackend.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'packages/idb-bridge/src/MemoryBackend.ts') 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; -- cgit v1.2.3