Skip to content

Commit 814e0ef

Browse files
committed
Update miscTest to include meta
1 parent d6bb5f7 commit 814e0ef

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

api/v3.0.0/miscTest.js

+13
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@ describe("[misc]", function() {
2121
});
2222
});
2323

24+
it("should successfully execute GET /meta (meta)", function(next) {
25+
client.misc.meta(
26+
{},
27+
function(err, res) {
28+
Assert.equal(err, null);
29+
// other assertions go here
30+
Assert('hooks' in res);
31+
Assert('git' in res);
32+
next();
33+
}
34+
);
35+
});
36+
2437
it("should successfully execute GET /rate_limit (rateLimit)", function(next) {
2538
client.misc.rateLimit(
2639
{},

0 commit comments

Comments
 (0)