Skip to content

Commit 6984544

Browse files
committed
Fix test
1 parent 99aa4e5 commit 6984544

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

__tests__/convert-type.test.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import { expect, test } from 'bun:test'
22

33
import { convertType } from '../convert-type'
44

5-
test.each([['string', '"string"']])('convertType', (type, expected) => {
6-
expect(convertType(type)).toEqual(expected)
7-
})
5+
test.each([['string', '"string" | Globals']])(
6+
'convertType',
7+
(type, expected) => {
8+
expect(convertType(type)).toEqual(expected)
9+
},
10+
)

0 commit comments

Comments
 (0)