Skip to content

Commit ef1279e

Browse files
committed
Try to fix bun ci
1 parent f54dd45 commit ef1279e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/packed.test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { deepStrictEqual, throws } from 'node:assert';
2-
import { describe, should } from 'micro-should';
31
import { hex } from '@scure/base';
4-
import * as P from '../lib/esm/index.js';
2+
import { describe, should } from 'micro-should';
3+
import { deepStrictEqual, throws } from 'node:assert';
54
import * as PD from '../lib/esm/debugger.js';
5+
import * as P from '../lib/esm/index.js';
66

77
const Reader = P._TEST._Reader;
88
const Writer = P._TEST._Writer;
@@ -1234,7 +1234,7 @@ describe('coders', () => {
12341234
'-Infinity',
12351235
'-0',
12361236
];
1237-
for (const t of fail) throws(() => i64.encode(t), `${t}`);
1237+
for (const t of fail) throws(() => i64.encode(t), `${t || 'item'}`);
12381238
const d5 = P.coders.decimal(5);
12391239
deepStrictEqual(d5.encode(123n), '0.00123');
12401240
deepStrictEqual(d5.encode(-123n), '-0.00123');

0 commit comments

Comments
 (0)