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 806570b commit 762d80cCopy full SHA for 762d80c
test/integration/api/admin/api_spec.js
@@ -602,6 +602,10 @@ describe("api", function () {
602
expect(result.rate_limit_reset_at).to.be.an("object");
603
expect(result.rate_limit_reset_at).to.have.property("getDate");
604
expect(result.rate_limit_remaining).to.be.a("number");
605
+
606
+ expect(result.rate_limit_allowed).to.be.above(0);
607
+ expect(result.rate_limit_remaining).to.be.above(0);
608
+ expect(result.rate_limit_reset_at).to.be.above(0);
609
});
610
611
0 commit comments