Files
Multi-Debrid-Downloader/tests/dev-server-url.test.ts
Sucukdeluxe a5758aa905 release: publish Multi-Debrid Downloader v2.0.14
Add live English and German localization, queue availability and metadata resolution, responsive package controls, polished navigation and drag interactions, clearer history and account states, and a rebuilt public README. Harden Windows packaging with verified icons and version metadata, archive inspection, and expanded release tests.
2026-08-10 19:42:49 +02:00

10 lines
352 B
TypeScript

import { describe, expect, it } from "vitest";
import { DEV_SERVER_PORT, DEV_SERVER_URL } from "../src/main/dev-server-url";
describe("development server URL", () => {
it("uses the isolated downloader development port by default", () => {
expect(DEV_SERVER_PORT).toBe("5180");
expect(DEV_SERVER_URL).toBe("http://localhost:5180");
});
});