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
{{ message }}
This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
I need custom tsify to instrument the transpiled code. Something like this works for me from Node
// can we instrument typescript code using Istanbul?constbrowserify=require('browserify');// https://github.com/TypeStrong/tsifyconsttsify=require('tsify');// https://github.com/devongovett/browserify-istanbulconstistanbul=require('browserify-istanbul')browserify().add('main.ts').plugin(tsify).transform(istanbul).bundle().on('error',function(error){console.error(error.toString());}).pipe(process.stdout);
@bahmutov Can u please provide a solution to this issue? Of all the work we did to replace testing framework from Jest and Selenium to Cypress last year, this is the only limitation we are stuck now. Thanks.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Cypress v6
@cypress/browserify-preprocessor 3.0.1
my settings specify
tsify
pluginThen I get the following message
But if I also use
typescript: require.resolve('typescript')
option, then mytsify
plugin is not used (./lib/simple_tsify
is used instead)The text was updated successfully, but these errors were encountered: