We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd061b5 commit 0f5d81dCopy full SHA for 0f5d81d
test/integration/delete-resource/index.js
@@ -20,6 +20,15 @@ describe("Delete Resource", () => {
20
done();
21
}).catch(done);
22
});
23
+
24
+ it("should have deleted the resource", (done) => {
25
+ Agent.request("GET", "/organizations/54419d550a5069a2129ef255")
26
+ .promise()
27
+ .then(done, (err) => {
28
+ expect(err.status).to.equal(404);
29
+ done();
30
+ }).catch(done);
31
+ })
32
33
34
describe("Invalid deletion", () => {
0 commit comments