We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ac0a3d commit 779672dCopy full SHA for 779672d
test/map/utils/parsePB.test.ts
@@ -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