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/dom-text-scanner.test.js | |
parent | c563e5bfa5f4bded8901dccf2d589f89356574c9 (diff) |
Fix some import orderings
Diffstat (limited to 'test/dom-text-scanner.test.js')
-rw-r--r-- | test/dom-text-scanner.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
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'; |