diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-08-19 14:13:31 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-08-19 14:13:31 -0300 |
commit | ef8acc5d50fa3c23bd7c9d4bb720b7ff78581981 (patch) | |
tree | 6c061e3771cb47619ce9163b559053504a000641 /test/unit/util | |
parent | 37ef3f288fce9bd65a2cd86107239e22f977e78d (diff) |
clean up imports & miscellaneous metastructures across codebase
Diffstat (limited to 'test/unit/util')
-rw-r--r-- | test/unit/util/html.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/util/html.js b/test/unit/util/html.js index 9b30aeb3..b5956e67 100644 --- a/test/unit/util/html.js +++ b/test/unit/util/html.js @@ -1,9 +1,9 @@ import t from 'tap'; -import * as html from '../../../src/util/html.js'; -const {Tag, Attributes, Template} = html; +import * as html from '#html'; +import {strictlyThrows} from '#test-lib'; -import {strictlyThrows} from '../../lib/strict-match-error.js'; +const {Tag, Attributes, Template} = html; t.test(`html.tag`, t => { t.plan(14); |