File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -105,16 +105,18 @@ spec = do
105
105
serverApp = pure $ logRequest $ addCors $ serve testApi testServer
106
106
107
107
Warp. testWithApplication serverApp $ \ serverPort -> do
108
+ threadDelay $ 500 * 1000
108
109
109
110
let clientApp :: IO Application
110
111
clientApp = WS. jsaddleOr defaultConnectionOptions (action serverPort >> Run. syncPoint) WS. jsaddleApp
111
112
112
113
Warp. testWithApplication (simpleCors <$> clientApp) $ \ clientPort -> do
114
+ threadDelay $ 500 * 1000
115
+
113
116
putStrLn $ " server http://localhost:" ++ show serverPort
114
117
putStrLn $ " client http://localhost:" ++ show clientPort
115
118
putStrLn $ " google-chrome-stable --headless --disable-gpu --screenshot http://localhost:" ++ show clientPort
116
119
117
- -- threadDelay $ 1000 * 1000 * 1000
118
120
119
121
-- Run headless chrome
120
122
-- https://docs.travis-ci.com/user/gui-and-headless-browsers/#using-the-chrome-addon-in-the-headless-mode
You can’t perform that action at this time.
0 commit comments