test(server/utils): add tests for isDev

This commit is contained in:
Panagiotis Papadopoulos 2025-01-29 21:53:31 +01:00
parent 283b19c716
commit 5c20a6d5ee

View File

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