mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-26 05:51:21 -08:00
71f8c1066a
* feat: server side search API (#2112) * refactor repository_recipes filter building * add food filter to recipe repository page_all * fix query type annotations * working search * add tests and make sure title matches are ordered correctly * remove instruction matching again * fix formatting and small issues * fix another linting error * make search test no rely on actual words * fix failing postgres compiled query * revise incorrectly ordered migration * automatically extract latest migration version * test migration orderes * run type generators * new search function * wip: new search page * sortable field options * fix virtual scroll issue * fix search casing bug * finalize search filters/sorts * remove old composable * fix type errors --------- Co-authored-by: Sören <fleshgolem@gmx.net>
25 lines
643 B
TypeScript
25 lines
643 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { route } from ".";
|
|
|
|
describe("UrlBuilder", () => {
|
|
it("basic query parameter", () => {
|
|
const result = route("/test", { a: "b" });
|
|
expect(result).toBe("/test?a=b");
|
|
});
|
|
|
|
it("multiple query parameters", () => {
|
|
const result = route("/test", { a: "b", c: "d" });
|
|
expect(result).toBe("/test?a=b&c=d");
|
|
});
|
|
|
|
it("no query parameters", () => {
|
|
const result = route("/test");
|
|
expect(result).toBe("/test");
|
|
});
|
|
|
|
it("list-like query parameters", () => {
|
|
const result = route("/test", { a: ["b", "c"] });
|
|
expect(result).toBe("/test?a=b&a=c");
|
|
});
|
|
});
|