initial commit2
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 55s
CI / Go — edge-gateway build (push) Successful in 13s

This commit is contained in:
smueller
2026-06-26 10:45:58 +02:00
parent e37ea87b35
commit 4104daaf75
10 changed files with 145 additions and 50 deletions

View File

@@ -0,0 +1,8 @@
import { describe, it } from "node:test";
import assert from "node:assert/strict";
describe("web stub", () => {
it("phase 0 placeholder", () => {
assert.ok(true);
});
});