summaryrefslogtreecommitdiff
path: root/test/database.test.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-03 10:45:08 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-12-03 10:45:08 -0500
commit083b4749139213c6fefe80166d73f54604a85267 (patch)
tree046ee751868d35edc6f6b0a33903546f8e78d1a7 /test/database.test.js
parentc563e5bfa5f4bded8901dccf2d589f89356574c9 (diff)
Fix some import orderings
Diffstat (limited to 'test/database.test.js')
-rw-r--r--test/database.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/database.test.js b/test/database.test.js
index 30854d55..80871f95 100644
--- a/test/database.test.js
+++ b/test/database.test.js
@@ -17,8 +17,8 @@
*/
import {IDBFactory, IDBKeyRange} from 'fake-indexeddb';
-import path from 'path';
import {fileURLToPath} from 'node:url';
+import path from 'path';
import {beforeEach, describe, expect, test, vi} from 'vitest';
import {createDictionaryArchive} from '../dev/util.js';
import {DictionaryDatabase} from '../ext/js/language/dictionary-database.js';