Skip to content

Commit b2efd4e

Browse files
committed
Write test code
1 parent 42c05cc commit b2efd4e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { expect, test } from 'bun:test'
2+
import * as indexModule from '../index'
3+
4+
// Type imports to verify types are exported (compile-time check)
5+
6+
test('index.ts exports', () => {
7+
expect({ ...indexModule }).toEqual({
8+
createApi: expect.any(Function),
9+
})
10+
})

0 commit comments

Comments
 (0)