Update environment configuration and fix test case naming
Some checks failed
Deno-Workflow / Deploy (push) Has been cancelled

This commit is contained in:
fzzinchemical
2025-11-12 08:57:43 +01:00
parent bfd7680cf2
commit ddba2854c4
4 changed files with 35 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ Deno.test("Test URL Search Parameters", () => {
));
});
Deno.test("Test Request Workder", async () => {
Deno.test("Test Request Worker", async () => {
console.debug(await requestWorker({
limit: "12",
tags: "sfw",
@@ -15,6 +15,6 @@ Deno.test("Test Request Workder", async () => {
Deno.test("Test Request Workder 2", async () => {
Deno.test("Test Request Worker 2", async () => {
console.debug(await requestWorker({limit: "5",tags: "AI+catgirl"}));
});