Add protocol codec tests and vitest setup

This commit is contained in:
nav
2026-04-08 21:04:55 +00:00
parent 4d8c787dbc
commit fbe1457ab6
4 changed files with 284 additions and 0 deletions

8
vitest.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "node"
}
});