We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3298c9c commit 3423065Copy full SHA for 3423065
Cakefile
@@ -206,14 +206,9 @@ runTests = (CoffeeScript) ->
206
log "failed #{failures.length} and #{message}", red
207
for fail in failures
208
{error, filename, description, source} = fail
209
- jsFilename = filename.replace(/\.coffee$/,'.js')
210
- match = error.stack?.match(new RegExp(fail.file+":(\\d+):(\\d+)"))
211
- match = error.stack?.match(/on line (\d+):/) unless match
212
- [match, line, col] = match if match
213
console.log ''
214
log " #{description}", red if description
215
log " #{error.stack}", red
216
- log " #{jsFilename}: line #{line ? 'unknown'}, column #{col ? 'unknown'}", red
217
console.log " #{source}" if source
218
return
219
0 commit comments