Files
SponsorBlockServer/test/cases/getDaysSavedFormatted.ts
2022-09-24 22:46:35 -04:00

11 lines
323 B
TypeScript

import assert from "assert";
import { client } from "../utils/httpClient";
const endpoint = "/api/getDaysSavedFormatted";
describe("getDaysSavedFormatted", () => {
it("can get days saved", async () => {
const result = await client({ url: endpoint });
assert.ok(result.data.daysSaved >= 0);
});
});