Skip to content

Commit

Permalink
test: add first small test test
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Apr 4, 2023
1 parent 4ac0a3d commit 779672d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/map/utils/parsePB.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { describe, it } from 'vitest';
import { parsePB } from '../../../src/map/utils/parsePB';

describe.concurrent('Parse PB', () => {
it('empty', ({ expect }) => {
const res = parsePB([]);
expect(res).empty;
});
});

0 comments on commit 779672d

Please sign in to comment.