diff --git a/tests/e2e/server/routes.js b/tests/e2e/server/routes.ts similarity index 88% rename from tests/e2e/server/routes.js rename to tests/e2e/server/routes.ts index ffab3b01d297..0a204f491d18 100644 --- a/tests/e2e/server/routes.js +++ b/tests/e2e/server/routes.ts @@ -1,4 +1,4 @@ -export default { +const routes = { // The app calls this endpoint to know which test to run testConfig: '/test_config', @@ -16,4 +16,6 @@ export default { // Gets the network cache testGetNetworkCache: '/test_get_network_cache', -}; +} satisfies Record; + +export default routes;