@@ -41,7 +41,7 @@ This module allows you to interact with your program by simulating
4141user interactions and external events (like HTTP responses and ports),
4242and making assertions about the HTML it renders and the external requests it makes.
4343
44- - [Guide for upgrading from elm-program-test 2.x to 3.x](https://elm-program-test.netlify.com /upgrade-3.0.0.html)
44+ - [Guide for upgrading from elm-program-test 2.x to 3.x](https://elm-program-test.netlify.app /upgrade-3.0.0.html)
4545
4646
4747## Documentation index
@@ -63,11 +63,11 @@ For a more detailed explanation of how to get started,
6363see the elm-program-test guidebooks
6464(the best one to start with is “Testing programs with interactive views”):
6565
66- - [Testing programs with interactive views](https://elm-program-test.netlify.com //html.html) —
66+ - [Testing programs with interactive views](https://elm-program-test.netlify.app //html.html) —
6767 shows an example of test-driving adding form validation to an Elm program
68- - [Testing programs with Cmds](https://elm-program-test.netlify.com /cmds.html) — shows testing a program
68+ - [Testing programs with Cmds](https://elm-program-test.netlify.app /cmds.html) — shows testing a program
6969 that uses `Http.get` and `Http.post`
70- - [Testing programs with ports](https://elm-program-test.netlify.com /ports.html) — shows testing a program
70+ - [Testing programs with ports](https://elm-program-test.netlify.app /ports.html) — shows testing a program
7171 that uses ports to interface with JavaScript
7272
7373
@@ -483,7 +483,7 @@ withJsonStringFlags decoder (ProgramDefinition options program) =
483483when your app runs in production
484484(this enables you to use [`simulateHttpResponse`](#simulateHttpResponse), [`advanceTime`](#advanceTime), etc.).
485485For a detailed explanation and example of how to set up tests that use simulated effects,
486- see the [“Testing programs with Cmds” guidebook](https://elm-program-test.netlify.com /cmds.html).
486+ see the [“Testing programs with Cmds” guidebook](https://elm-program-test.netlify.app /cmds.html).
487487
488488You only need to use this if you need to simulate [HTTP requests](#simulating-http-responses),
489489[outgoing ports](#expectOutgoingPortValues),
@@ -506,7 +506,7 @@ when your app runs in production
506506(this enables you to use [`simulateIncomingPort`](#simulateIncomingPort), etc.).
507507You only need to use this if you need to simulate subscriptions in your test.
508508For a detailed explanation and example of how to set up tests that use simulated subscriptions,
509- see the [“Testing programs with ports” guidebook](https://elm-program-test.netlify.com /ports.html).
509+ see the [“Testing programs with ports” guidebook](https://elm-program-test.netlify.app /ports.html).
510510
511511The function you provide should be similar to your program's `subscriptions` function
512512but return `SimulatedSub`s instead of `Sub`s.
@@ -1732,7 +1732,7 @@ For example:
17321732 Json.Decode.string
17331733 (Expect.equal [ "975774a26612", "920facb1bac0" ])
17341734
1735- For a more detailed explanation and example, see the [“Testing programs with ports” guidebook](https://elm-program-test.netlify.com /ports.html).
1735+ For a more detailed explanation and example, see the [“Testing programs with ports” guidebook](https://elm-program-test.netlify.app /ports.html).
17361736
17371737NOTE: You must use [`withSimulatedEffects`](#withSimulatedEffects) before you call [`start`](#start) to be able to use this function.
17381738
@@ -1829,7 +1829,7 @@ For example, here we are simulating the program receiving a list of strings on t
18291829 [ "Garden-path sentences can confuse the reader." ]
18301830 )
18311831
1832- For a more detailed explanation and example, see the [“Testing programs with ports” guidebook](https://elm-program-test.netlify.com /ports.html).
1832+ For a more detailed explanation and example, see the [“Testing programs with ports” guidebook](https://elm-program-test.netlify.app /ports.html).
18331833
18341834NOTE: You must use [`withSimulatedSubscriptions`](#withSimulatedSubscriptions) before you call [`start`](#start) to be able to use this function.
18351835
0 commit comments