@@ -9,6 +9,7 @@ import qualified Test.Snapshot
99import qualified Test.Lamdera
1010import qualified Test.Check
1111import qualified Test.Wire
12+ import qualified Test.Ext.ElmPages.Check
1213import Test.Helpers
1314
1415import qualified Make
@@ -18,6 +19,7 @@ import qualified Lamdera.Compile
1819import qualified Lamdera.Evaluate
1920import qualified Lamdera.CLI.Check
2021import qualified Lamdera.CLI.CheckElmPages
22+
2123import qualified Ext.Query.Canonical
2224
2325import Develop
@@ -84,13 +86,23 @@ For more information on how to use the GHCi debugger, see the GHC User's Guide.
8486-- Current target for ghci :rr command. See ~/.ghci config file, which should contain
8587-- something like `:def rr const $ return $ unlines [":r","Test.target"]`
8688
89+ target = Test. all
90+
91+
8792-- target = buildTestHarnessToProductionJs
8893-- target = checkProjectCompiles
8994-- target = liveReloadLive
90- target = Lamdera.Compile. makeDev_ " /Users/mario/dev/projects/lamdera-compiler/test/scenario-elm-pages-incompatible-wire/.elm-pages/Main.elm"
91-
9295-- target = do
9396-- Dir.withCurrentDirectory "/Users/mario/dev/projects/lamdera-dashboard" $ Lamdera.CLI.Check.run () ()
97+ -- target = Test.Wire.all
98+ -- target = checkUserConfig
99+ -- target = Test.Wire.buildAllPackages
100+ -- target = Lamdera.CLI.Login.run () ()
101+ -- target = Dir.withCurrentDirectory "/Users/mario/dev/projects/lamdera-test" $ Lamdera.CLI.Reset.run () ()
102+ -- target = Lamdera.Diff.run
103+ -- target = Lamdera.ReverseProxy.start
104+ -- target = Test.Check.mockBuildSh "/Users/mario/lamdera-deploys/test-local-v1" "test-local"
105+ -- target = Test.Check.mockBuildSh "/Users/mario/dev/test/lamdera-init" "test-local"
94106
95107
96108checkProjectCompiles = do
@@ -117,18 +129,6 @@ checkProjectCompiles = do
117129 }
118130
119131
120- -- target = Test.all
121- -- target = Test.Wire.all
122- -- target = checkUserConfig
123- -- target = Test.Wire.buildAllPackages
124- -- target = Lamdera.CLI.Login.run () ()
125- -- target = Dir.withCurrentDirectory "/Users/mario/dev/projects/lamdera-test" $ Lamdera.CLI.Reset.run () ()
126- -- target = Lamdera.Diff.run
127- -- target = Lamdera.ReverseProxy.start
128-
129- -- target = Test.Check.mockBuildSh "/Users/mario/lamdera-deploys/test-local-v1" "test-local"
130- -- target = Test.Check.mockBuildSh "/Users/mario/dev/test/lamdera-init" "test-local"
131-
132132-- target = do
133133-- setEnv "LOVR" "/Users/mario/dev/projects/lamdera/overrides"
134134-- setEnv "LDEBUG" "1"
@@ -211,10 +211,15 @@ liveReloadLive = do
211211-- Dir.withCurrentDirectory "/Users/mario/dev/projects/elmcraft" $ Lamdera.CLI.CheckElmPages.run () ()
212212
213213
214-
215214all =
216215 EasyTest. run allTests
217216
217+ rerun seed =
218+ EasyTest. rerun seed allTests
219+
220+ rerunOnly seed label =
221+ EasyTest. rerunOnly seed label allTests
222+
218223
219224single = do
220225
@@ -234,5 +239,6 @@ allTests =
234239 [ scope " Test.Lamdera -> " $ Test.Lamdera. suite
235240 , scope " Test.Snapshot -> " $ Test.Snapshot. suite
236241 , scope " Test.Wire -> " $ Test.Wire. suite
242+ , scope " Test.Ext.ElmPages.Check -> " $ Test.Ext.ElmPages.Check. suite
237243 , Test.LamderaGenerated. suite
238244 ]
0 commit comments