diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-03 10:45:08 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-03 10:45:08 -0500 |
commit | 083b4749139213c6fefe80166d73f54604a85267 (patch) | |
tree | 046ee751868d35edc6f6b0a33903546f8e78d1a7 /test/database.test.js | |
parent | c563e5bfa5f4bded8901dccf2d589f89356574c9 (diff) |
Fix some import orderings
Diffstat (limited to 'test/database.test.js')
-rw-r--r-- | test/database.test.js | 2 |
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'; |