29 lines
725 B
Plaintext
29 lines
725 B
Plaintext
meta {
|
|
name: GET health (quest complete reward wiring NEO-128)
|
|
type: http
|
|
seq: 3
|
|
}
|
|
|
|
get {
|
|
url: {{baseUrl}}/health
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
docs {
|
|
NEO-128 wires RewardRouterOperations into QuestStateOperations.TryMarkComplete (deliver-then-mark).
|
|
No new HTTP routes — quest-progress GET/accept POST signatures gained reward-router DI only.
|
|
Use this request to confirm the host started after wiring; verify bundle delivery via dotnet test
|
|
(QuestStateOperationsTests, QuestObjectiveWiringTests).
|
|
}
|
|
|
|
tests {
|
|
test("status 200", function () {
|
|
expect(res.getStatus()).to.equal(200);
|
|
});
|
|
|
|
test("service identity", function () {
|
|
expect(res.getBody().service).to.equal("NeonSprawl.Server");
|
|
});
|
|
}
|