From 9276172316e7a1afa7e9ad1c5d3daabfbcf93589 Mon Sep 17 00:00:00 2001 From: Andrew Hankinson Date: Fri, 18 Jul 2025 00:52:31 +0200 Subject: [PATCH] Fixed: Test Dependency on elm/random Running elm-test-rs on the test suite flagged an issue with the tests missing the elm/random dependency. Random is imported in tests/ArrayTests.elm, but not listed in the test-dependenceies section of the elm.json. --- elm.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elm.json b/elm.json index 2854955..1dffa95 100644 --- a/elm.json +++ b/elm.json @@ -27,6 +27,7 @@ }, "test-dependencies": { "elm/html": "1.0.0 <= v < 2.0.0", - "elm-explorations/test": "2.0.0 <= v < 3.0.0" + "elm-explorations/test": "2.0.0 <= v < 3.0.0", + "elm/random": "1.0.0 <= v < 2.0.0" } }