summaryrefslogtreecommitdiff
path: root/test
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
parentc563e5bfa5f4bded8901dccf2d589f89356574c9 (diff)
Fix some import orderings
Diffstat (limited to 'test')
-rw-r--r--test/database.test.js2
-rw-r--r--test/deinflector.test.js2
-rw-r--r--test/dom-text-scanner.test.js2
3 files changed, 3 insertions, 3 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';
diff --git a/test/deinflector.test.js b/test/deinflector.test.js
index a69f8e56..bd538428 100644
--- a/test/deinflector.test.js
+++ b/test/deinflector.test.js
@@ -17,10 +17,10 @@
*/
import fs from 'fs';
+import {fileURLToPath} from 'node:url';
import path from 'path';
import {describe, expect, test} from 'vitest';
import {Deinflector} from '../ext/js/language/deinflector.js';
-import {fileURLToPath} from 'node:url';
const dirname = path.dirname(fileURLToPath(import.meta.url));
diff --git a/test/dom-text-scanner.test.js b/test/dom-text-scanner.test.js
index 30aec33e..f6a7410a 100644
--- a/test/dom-text-scanner.test.js
+++ b/test/dom-text-scanner.test.js
@@ -18,8 +18,8 @@
import fs from 'fs';
import {JSDOM} from 'jsdom';
-import path from 'path';
import {fileURLToPath} from 'node:url';
+import path from 'path';
import {expect, test} from 'vitest';
import {DOMTextScanner} from '../ext/js/dom/dom-text-scanner.js';