diff --git a/.travis.yml b/.travis.yml index 26538f3..fb84d68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,4 +9,4 @@ install: - echo "n" | elm-get install evancz/automaton - npm install jsdom before_script: elm-io Test.elm test.js -script: echo "exit" | node test.js +script: echo "exit" | node test.js > /dev/null diff --git a/Test.elm b/Test.elm index 6d9b7f8..f039b6b 100644 --- a/Test.elm +++ b/Test.elm @@ -19,7 +19,8 @@ hello : IO () hello = putStrLn "Hello, Console!" >> putStrLn "I'll echo your input until you say \"exit\":" >> loop >> - putStrLn "That's all, folks!" >> + putStrLn "That's all, folks! Here's some blahs:" >> + putStrLn (String.concat <| repeat 100000 "blah ") >> exit 0 -- | Can't use a type alias in ports, yet :/