Skip to content

Commit ca323df

Browse files
committed
fix: run prettier
1 parent c805f8d commit ca323df

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

library/src/schemas/lazy/lazyAsync.test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ describe('lazyAsync', () => {
1717
});
1818

1919
test('should pass input to getter', async () => {
20-
const getter = vi.fn().mockReturnValue({ _parse: stringAsync()._parse }) as any;
20+
const getter = vi
21+
.fn()
22+
.mockReturnValue({ _parse: stringAsync()._parse }) as any;
2123
const schema = lazyAsync(getter);
2224
const input = 'hello';
2325
await parseAsync(schema, input);
+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import jestExpect from 'npm:[email protected]';
2+
import jestFn from 'npm:[email protected]';
3+
14
export * from 'jsr:@std/[email protected]/bdd';
25
export { it as test } from 'jsr:@std/[email protected]/bdd';
36
export { expectTypeOf } from 'npm:[email protected]';
4-
import jestExpect from 'npm:[email protected]';
5-
import jestFn from 'npm:[email protected]';
7+
68
export const expect = jestExpect.default;
7-
export const vi = { fn: jestFn.fn }
9+
export const vi = { fn: jestFn.fn };

0 commit comments

Comments
 (0)