You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding require 'coffee-coverage/register-istanbul' inside Cakefile’s runTests throws errors for the files with new features added in CoffeeScript 2 (note filenames):
CoverageError: Could not parse documentation/examples/jsx.coffee:
[stdin]:9:4: error: missing / (unclosed regex)
</aside>
^
CoverageError: Could not parse documentation/examples/object_spread.coffee:
SyntaxError: unexpected ...
CoverageError: Could not parse documentation/examples/type_annotations.coffee:
SyntaxError: unexpected : string
And import or export statements, added in 1.11, still aren’t supported (#82):
CoverageError: Could not compile documentation/examples/modules.coffee after instrumenting:
SyntaxError: import statements must be at top-level scope
The text was updated successfully, but these errors were encountered:
I am pretty sure #91 isn't ready for a code base so large, but it might be worth a try? import/export aren't supported yet, but it might be a good starting point.
Adding
require 'coffee-coverage/register-istanbul'
insideCakefile
’srunTests
throws errors for the files with new features added in CoffeeScript 2 (note filenames):And
import
orexport
statements, added in 1.11, still aren’t supported (#82):The text was updated successfully, but these errors were encountered: