From 481497b82f685797be796bb0494a904a9137bde3 Mon Sep 17 00:00:00 2001 From: Nick Schot Date: Wed, 28 Jan 2026 08:47:44 +0100 Subject: [PATCH] Fix route_info test import Seems this test file was renamed at some point without the import being updated, meaning these tests haven't run in CI for quite a while. --- tests/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.ts b/tests/index.ts index 2a032d8e..f34d7dfd 100644 --- a/tests/index.ts +++ b/tests/index.ts @@ -1,6 +1,6 @@ import './async_get_handler_test'; -import './handler_info_test'; import './query_params_test'; +import './route_info_test'; import './router_test'; import './transition-aborted-error_test'; import './transition_intent_test';