mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-12-25 12:52:27 +03:00
Assert for multiple ports.
This commit is contained in:
parent
56718bb708
commit
bf68b2eb47
@ -336,12 +336,11 @@ expectSuccess expectedRequests previous =
|
||||
|> ProgramTest.expectOutgoingPortValues
|
||||
"toJsPort"
|
||||
(Codec.decoder ToJsPayload.successCodecNew)
|
||||
(\value ->
|
||||
case value of
|
||||
[ portPayload ] ->
|
||||
Dict.fromList
|
||||
[ ( portPayload.route, portPayload.contentJson )
|
||||
]
|
||||
(\portPayloads ->
|
||||
portPayloads
|
||||
|> List.map
|
||||
(\portPayload -> ( portPayload.route, portPayload.contentJson ))
|
||||
|> Dict.fromList
|
||||
|> Expect.equalDicts
|
||||
(expectedRequests
|
||||
|> List.map
|
||||
@ -357,9 +356,6 @@ expectSuccess expectedRequests previous =
|
||||
)
|
||||
|> Dict.fromList
|
||||
)
|
||||
|
||||
_ ->
|
||||
Expect.fail ("Expected ports to be called once, but instead there were " ++ String.fromInt (List.length value) ++ " calls.")
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user