Skip to content

Commit

Permalink
Update runner test
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCommieAxolotl committed Aug 16, 2023
1 parent 1c90ac9 commit 33799cd
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions test/standalone.run.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ server.attach(route("/", () => html`<h1>Hello World</h1>`));
server.attach(route("/json", () => json({ hello: "world" })));

server.attach(
route("/path/[e]", (e) => {
route("/[...path]", (e) => {
return json({
params: e.params,
query: e.query,
Expand All @@ -16,9 +16,3 @@ server.attach(
});
})
);

server.attach(
route("/[...404]", () => {
return status(404);
})
);

0 comments on commit 33799cd

Please sign in to comment.