23 lines
308 B
Text
23 lines
308 B
Text
|
|
meta {
|
||
|
|
name: Delete Chain
|
||
|
|
type: http
|
||
|
|
seq: 5
|
||
|
|
}
|
||
|
|
|
||
|
|
delete {
|
||
|
|
url: {{baseUrl}}/chains/{{chainId}}
|
||
|
|
}
|
||
|
|
|
||
|
|
headers {
|
||
|
|
Authorization: Bearer {{authToken}}
|
||
|
|
}
|
||
|
|
|
||
|
|
assert {
|
||
|
|
res.status: equals 204
|
||
|
|
}
|
||
|
|
|
||
|
|
tests {
|
||
|
|
test("Delete chain returns 204 no content", function() {
|
||
|
|
expect(res.getStatus()).to.equal(204);
|
||
|
|
});
|
||
|
|
}
|