fixed overly fragile repl test to work with 0.12, see https://github.com/jashkenas/coffeescript/issues/3855

This commit is contained in:
Andreas Lubbe
2015-02-17 11:36:24 +01:00
parent 7c8849cc21
commit 25d97aa136

View File

@@ -103,7 +103,6 @@ testRepl "existential assignment of previously declared variable", (input, outpu
testRepl "keeps running after runtime error", (input, output) ->
input.emitLine 'a = b'
eq 0, output.lastWrite().indexOf 'ReferenceError: b is not defined'
input.emitLine 'a'
eq 'undefined', output.lastWrite()