Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/middleware-matcher-auth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe("valid middleware matcher auth guards", () => {

it("blocks every path selected by group and constrained-repeat matchers", async () => {
await assertAuthGuard(baseUrl);
});
}, 30_000);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional: consider hoisting the 30_000 into a shared const (e.g. const DEV_ASSERT_TIMEOUT = 30_000;) reused by both this assertion and its beforeAll hook on line 143, so the two stay coupled if either is tuned later. Not blocking — the inline literal is fine and matches the existing style in this file.

});

describe("built Node production server", () => {
Expand Down
Loading