Fix tests

This commit is contained in:
Tessa Kelly 2023-09-01 12:40:08 -06:00
parent 90109559fa
commit 4b01e58b57
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
module HighlighterExampleSpec exposing (suite) module HighlighterExampleSpec exposing (suite)
import Examples.Highlighter exposing (Msg, State, example) import Examples.Highlighter exposing (example)
import MouseHelpers import MouseHelpers
import ProgramTest exposing (..) import ProgramTest exposing (..)
import PseudoElements exposing (hasAfter, hasBefore) import PseudoElements exposing (hasAfter, hasBefore)
@ -10,9 +10,9 @@ import Test.Html.Selector exposing (..)
import TestApp exposing (app) import TestApp exposing (app)
route : Route State Msg usageState usageMsg route : Route
route = route =
Routes.Doodad example Routes.exampleRoute example
suite : Test suite : Test

View File

@ -2,7 +2,7 @@ module SwitchExampleSpec exposing (suite)
import Accessibility.Aria as Aria import Accessibility.Aria as Aria
import Accessibility.Role as Role import Accessibility.Role as Role
import Examples.Switch exposing (Msg, State, example) import Examples.Switch exposing (example)
import ProgramTest exposing (..) import ProgramTest exposing (..)
import Routes exposing (Route) import Routes exposing (Route)
import Test exposing (..) import Test exposing (..)
@ -12,9 +12,9 @@ import Test.Html.Selector exposing (..)
import TestApp exposing (app) import TestApp exposing (app)
route : Route State Msg usageState usageMsg route : Route
route = route =
Routes.Doodad example Routes.exampleRoute example
suite : Test suite : Test