-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No source map support? #40
Labels
documentation
Improvements or additions to documentation
Comments
Taken back what I've written before; simple solution is to use source-map-support you write your test i.e require('source-map-support').install()
var test = require('tape-catch')
test('virtual dom', function(t) {
t.plan(1)
t.equal(1, 2)
t.end()
}) compile it with browserify in debug mode
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the browserify command, all gets bundled and in case of an error, it does not point to the correct line number of the source code. Is there a trick to make this happen?
The text was updated successfully, but these errors were encountered: