diff options
| author | Bobby <[email protected]> | 2026-04-22 07:39:20 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-04-22 07:39:20 +0530 |
| commit | 22912c4af19b9055ed95779c4d16020fe3a449eb (patch) | |
| tree | 9d2391df4cf27eb95b198685fbb33df2a1c42991 /tests/unit/utils/assert.test.ts | |
| parent | 9f807f7e2d2d3711e2ca90cb3984234eef832ad4 (diff) | |
| download | hollowdark-22912c4af19b9055ed95779c4d16020fe3a449eb.tar.xz hollowdark-22912c4af19b9055ed95779c4d16020fe3a449eb.zip | |
Drop all barrel index.ts files; imports target leaf files directly
Diffstat (limited to 'tests/unit/utils/assert.test.ts')
| -rw-r--r-- | tests/unit/utils/assert.test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/utils/assert.test.ts b/tests/unit/utils/assert.test.ts index d0dbae6..ab660dc 100644 --- a/tests/unit/utils/assert.test.ts +++ b/tests/unit/utils/assert.test.ts @@ -1,5 +1,7 @@ import { describe, expect, test } from 'vitest' -import { assert, assertDefined, assertNever } from '@hollowdark/utils/assert' +import { assert } from '@hollowdark/utils/assert/assert' +import { assertDefined } from '@hollowdark/utils/assert/assert-defined' +import { assertNever } from '@hollowdark/utils/assert/assert-never' describe('assert', () => { test('passes on truthy condition', () => { |
