Skip to content

Commit

Permalink
Add big string test case
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsnew committed Apr 18, 2014
1 parent b0bdfac commit 9fcf0c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion Test.elm
Original file line number Diff line number Diff line change
Expand Up @@ -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 :/
Expand Down

0 comments on commit 9fcf0c9

Please sign in to comment.