germsvel / phoenix_test

PhoenixTest provides a unified way of writing feature tests -- regardless of whether you're testing LiveView pages or static (non-LiveView) pages.
https://hex.pm/packages/phoenix_test
MIT License
181 stars 23 forks source link

Would it be possible to relax Elixir requirement? #38

Closed tshakah closed 9 months ago

tshakah commented 9 months ago

Would it be possible to relax the required Elixir version so projects using this library don't have to be on 1.16?

https://github.com/germsvel/phoenix_test/blob/b8520142aa459dd6264fe13ae846dfc05323c8e0/mix.exs#L17

germsvel commented 9 months ago

Yeah, that's something I haven't tested yet (I've only tested it with Elixir 1.16), but I agree that it's probably something we would want to relax (at least to 1.15) if possible.

tshakah commented 9 months ago

1.15 would work for me, as that's what the app I was trying phoenix_test with was using

germsvel commented 9 months ago

I tried relaxing to 1.14, but there seem to be some mix format differences. So, for now, we'll just support 1.15.

tshakah commented 9 months ago

Thank you!