26 lines
586 B
Plaintext
26 lines
586 B
Plaintext
meta {
|
|
name: GET health (faction standing store NEO-135)
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: {{baseUrl}}/health
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
docs {
|
|
NEO-135 registers IFactionStandingStore and IReputationDeltaStore (in-memory or Postgres when configured). No faction standing 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");
|
|
});
|
|
}
|