Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jan 15, 2025
1 parent b74f68a commit 011d381
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion playground/app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { serve } from "srvx";

const server = serve({
port: 3000,
fetch(request) {
fetch(_request) {
return new Response(
`
<h1>👋 Hello there</h1>
Expand Down
2 changes: 1 addition & 1 deletion test/_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { expect, test } from "vitest";

export function addTests(
url: (path: string) => string,
opts?: { runtime?: string },
_opts?: { runtime?: string },
) {
test("GET works", async () => {
const response = await fetch(url("/"));
Expand Down

0 comments on commit 011d381

Please sign in to comment.