Skip to content

Commit 2f78b66

Browse files
committed
Update misc tests to include /emojis
1 parent 066698b commit 2f78b66

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

api/v3.0.0/miscTest.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@ describe("[misc]", function() {
2121
});
2222
});
2323

24+
it("should successfully execute GET /emojis (emojis)", function(next) {
25+
client.misc.emojis(
26+
{},
27+
function(err, res) {
28+
Assert.equal(err, null);
29+
// other assertions go here
30+
Assert.ifError(err);
31+
// A common emoji on github
32+
Assert('shipit' in res);
33+
next();
34+
}
35+
);
36+
});
37+
2438
it("should successfully execute GET /meta (meta)", function(next) {
2539
client.misc.meta(
2640
{},

0 commit comments

Comments
 (0)