Open kantuni opened 3 days ago
port module PhotoGallery exposing (init, Model, Msg, init, update, view)
should be
port module PhotoGallery exposing (Model, Msg, init, update, view)
Ideally, it should be
port module PhotoGallery exposing (Model, Msg(..), Photo, Status(..), init, initialModel, photoDecoder, update, urlPrefix, view)
for PhotoGalleryTests.elm to work.
PhotoGalleryTests.elm
should be
Ideally, it should be
for
PhotoGalleryTests.elm
to work.