26 lines
554 B
Plaintext
26 lines
554 B
Plaintext
meta {
|
|
name: GET health (quest state store NEO-116)
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: {{baseUrl}}/health
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
docs {
|
|
NEO-116 registers IPlayerQuestStateStore (in-memory or Postgres when configured). No quest progress HTTP API in this story — use this request to confirm the host started after store DI wiring.
|
|
}
|
|
|
|
tests {
|
|
test("status 200", function () {
|
|
expect(res.getStatus()).to.equal(200);
|
|
});
|
|
|
|
test("service identity", function () {
|
|
expect(res.getBody().service).to.equal("NeonSprawl.Server");
|
|
});
|
|
}
|