neet/masto.js

View on GitHub
tests/rest/v1/custom-emojis.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
describe("custom emojis", () => {
  it("lists custom emojis", async () => {
    await using client = await sessions.acquire();
    const emojis = await client.rest.v1.customEmojis.list();
    expect(emojis).toEqual(expect.any(Array));
  });
});