diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/database.test.js | 2 | ||||
| -rw-r--r-- | test/deinflector.test.js | 2 | ||||
| -rw-r--r-- | test/dom-text-scanner.test.js | 2 | 
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'; |