Skip to content

Commit 779672d

Browse files
committed
test: add first small test test
1 parent 4ac0a3d commit 779672d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/map/utils/parsePB.test.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { describe, it } from 'vitest';
2+
import { parsePB } from '../../../src/map/utils/parsePB';
3+
4+
describe.concurrent('Parse PB', () => {
5+
it('empty', ({ expect }) => {
6+
const res = parsePB([]);
7+
expect(res).empty;
8+
});
9+
});

0 commit comments

Comments
 (0)