From 3facdcb5bd0f6aeee10dad3d81899bc55b176aae Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Fri, 29 Nov 2024 15:26:59 +0000 Subject: [PATCH] Compile dev routes in test As the route is rendered in the stats page, it needs to be enabled in all Mix environments in order to avoid compile time warnings. --- config/test.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/test.exs b/config/test.exs index 75db33a2..dbe8902d 100644 --- a/config/test.exs +++ b/config/test.exs @@ -28,4 +28,6 @@ config :phoenix, :plug_init_mode, :runtime config :phoenix_live_view, enable_expensive_runtime_checks: true +config :music_library, dev_routes: true + config :music_library, LastFm, api: nil