Files
HexaHost-GameCloud/apps/web/test/stub.test.js
smueller 4104daaf75
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
initial commit2
2026-06-26 10:45:58 +02:00

9 lines
180 B
JavaScript

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