mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-24 11:44:51 +03:00
18 lines
422 B
Haskell
Executable File
18 lines
422 B
Haskell
Executable File
#!/usr/bin/env stack
|
|
{- stack
|
|
exec ghci
|
|
--package pretty-simple
|
|
--
|
|
test/Fixtures.hs
|
|
-}
|
|
|
|
{-
|
|
Stack script that provides a REPL testing environment for Wasp. Includes text fixtures
|
|
and convenient packages out of the box. Use it when you want to interactively
|
|
test a piece of your code.
|
|
Run it either as an executable or with `stack SCRIPT_NAME`.
|
|
-}
|
|
|
|
import Text.Pretty.Simple (pPrint)
|
|
import Fixtures
|