Review fixes.

This commit is contained in:
Dillon Kearns 2022-03-11 11:52:33 -08:00
parent 81c4085ef5
commit 4424929c0c
3 changed files with 2 additions and 17 deletions

View File

@ -70,15 +70,6 @@ type alias Response data =
PageServerResponse data
{-| -}
type alias RawResponse =
{ statusCode : Int
, headers : List ( String, String )
, body : Maybe String
, isBase64Encoded : Bool
}
{-| -}
map : (data -> mappedData) -> Response data -> Response mappedData
map mapFn pageServerResponse =

View File

@ -5,7 +5,7 @@ import Dict
import Expect
import Form
import Form.Value
import Test exposing (Test, describe, skip, test)
import Test exposing (Test, describe, test)
import Time

View File

@ -16,7 +16,6 @@ import Pages.Internal.NotFoundReason
import Pages.Internal.Platform.Cli exposing (..)
import Pages.Internal.Platform.Effect as Effect exposing (Effect)
import Pages.Internal.Platform.ToJsPayload as ToJsPayload
import Pages.Internal.StaticHttpBody as StaticHttpBody
import Pages.ProgramConfig exposing (ProgramConfig)
import Pages.SiteConfig exposing (SiteConfig)
import Pages.StaticHttp.Request as Request
@ -29,7 +28,7 @@ import Server.Response as Response
import SimulatedEffect.Cmd
import SimulatedEffect.Ports
import Task
import Test exposing (Test, describe, skip, test)
import Test exposing (Test, describe, test)
all : Test
@ -582,11 +581,6 @@ startSimple route dataSources =
startWithRoutes route [ route ] [] [ ( route, dataSources ) ]
startSimpleWithCache : List String -> DataSource a -> List ( Request.Request, String ) -> ProgramTest (Model Route) Msg Effect
startSimpleWithCache route dataSources cache =
startWithRoutes route [ route ] cache [ ( route, dataSources ) ]
startWithRoutes :
List String
-> List (List String)