test(server/utils): add tests for isDev

pull/1075/head
Panagiotis Papadopoulos 2025-01-29 21:53:31 +07:00
parent 283b19c716
commit 5c20a6d5ee
1 changed files with 6 additions and 0 deletions

@ -244,6 +244,12 @@ describe("#isWindows", () => {
}); });
}); });
describe("#isDev", () => {
it("should export a boolean", () => {
expect(utils.isDev).toBeTypeOf("boolean");
});
});
describe("#formatDownloadTitle", () => { describe("#formatDownloadTitle", () => {
//prettier-ignore //prettier-ignore