From 779672dfeb0a6111a55cd7d947fbb54d67ab0e43 Mon Sep 17 00:00:00 2001 From: nobkd <44443899+nobkd@users.noreply.github.com> Date: Tue, 4 Apr 2023 03:00:17 +0200 Subject: [PATCH] test: add first small test test --- test/map/utils/parsePB.test.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/map/utils/parsePB.test.ts diff --git a/test/map/utils/parsePB.test.ts b/test/map/utils/parsePB.test.ts new file mode 100644 index 0000000..eee64e3 --- /dev/null +++ b/test/map/utils/parsePB.test.ts @@ -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; + }); +});