mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-22 08:31:37 +03:00
21 lines
449 B
Haskell
21 lines
449 B
Haskell
|
module Tests.WaspCompileTest (waspCompile) where
|
||
|
|
||
|
import GoldenTest (GoldenTest, makeGoldenTest)
|
||
|
import ShellCommands
|
||
|
( OutputDir (DevOutputDir),
|
||
|
cdIntoCurrentProject,
|
||
|
reformatPackageJson,
|
||
|
waspCliCompile,
|
||
|
waspCliNew,
|
||
|
)
|
||
|
|
||
|
waspCompile :: GoldenTest
|
||
|
waspCompile =
|
||
|
makeGoldenTest "waspCompile" $
|
||
|
sequence
|
||
|
[ waspCliNew,
|
||
|
cdIntoCurrentProject,
|
||
|
waspCliCompile,
|
||
|
reformatPackageJson DevOutputDir
|
||
|
]
|