27 lines
388 B
Plaintext
27 lines
388 B
Plaintext
meta {
|
|
name: POST ability cast missing player
|
|
type: http
|
|
seq: 23
|
|
}
|
|
|
|
post {
|
|
url: {{baseUrl}}/game/players/missing-player/ability-cast
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"schemaVersion": 1,
|
|
"slotIndex": 0,
|
|
"abilityId": "prototype_pulse",
|
|
"targetId": null
|
|
}
|
|
}
|
|
|
|
tests {
|
|
test("status 404", function () {
|
|
expect(res.getStatus()).to.equal(404);
|
|
});
|
|
}
|