Files
HexaHost-GameCloud/apps/worker/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
228 B
JavaScript

import { describe, it } from "node:test";
import assert from "node:assert/strict";
describe("worker stub", () => {
it("exports phase 0 placeholder", () => {
assert.equal(process.env.NODE_ENV ?? "test", "test");
});
});