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
When using Solid and testing our app with coverage reporting enabled (powered by istanbul/nyc), there are some branches/functions which are uncovered, but they are not branches which exist in our code, instead they are generated by Solid. Because these code paths are generated, we cannot place a /* istanbul ignore next */ comment before the appropriate section because it doesn't exist anywhere in our source.
A few cases where this occurs (I'm sure there's others):
Show/Match components - If the match is never used, there's an unused function because of the get children() method which got generated
Refs - It generates a ternary with typeof _ref$ === "function" as the condiiton. Which in most cases will always be true/false so that means there's a branch of the code which never gets hit.
All of these result in an extra uncovered function here, an extra uncovered branch there. And there's no way we can add the appropriate comments before this code to ignore it.
When Solid is generating the runtime code, it should relocate the comments appropriately so they keep the same meaning that they have in the source.
Source:
{/* istanbul ignore next */}<Matchwhen={condition()}><div>Hello</div></Match>
Generated:
_$createComponent(Show,{getwhen(){returncondition();},/* istanbul ignore next */getchildren(){return_tmpl$();}})
Source:
letref;return<divref={ref}>Hello</div>
Generated: (This should always add the appropriate ignore comments since only one branch will ever be hit.)
letref;return(()=>{var_el$=_tmpl$();var_ref$=ref;/* istanbul ignore next */typeof_ref$==="function" ? _$use(_ref$,_el$) : ref=_el$;return_el$;})();
Screenshots or Videos
No response
Platform
OS: N/A
Browser: N/A
Version: 1.8.16
Additional context
It's also impossible currently to write our own plugin to do this since comments will get totally deleted during compilation when placed in certain spots of the JSX.
For example, this input:
functionCounter(){letref;/* istanbul ignore next -- 1 */return(<>{/* istanbul ignore next -- 2 */}<divref={ref}>Hi</div></>);}
Gets transformed into: (the second comment is just totally lost so we cannot even attempt to move it with our own plugin after Solid is done compiling)
functionCounter(){letref;/* istanbul ignore next -- 1 */return(()=>{var_el$=_tmpl$();var_ref$=ref;typeof_ref$==="function" ? _$use(_ref$,_el$) : ref=_el$;return_el$;})();}
This is a unique problem with Solid which doesn't exist with many other frameworks because Solid generates a lot of code rather than just calling functions from the Solid library. If these same bits of code were instead unconditional function calls to code in node_modules, this wouldn't be an issue.
The text was updated successfully, but these errors were encountered:
Yeah this is a tricky one. Source maps have also been challenging. We've made some improvements but due to the need for function wrappers/special handling of ref those things need to be inline. Like above _$use is the helper function but to keep references we can't pull that all in.
It's an interesting problem in that tooling that operates on source (ie not compiled code like in IDEs like TS etc) aren't going to have this problem. I wonder how this works in stuff like Svelte/Vue. Admittedly other than trying to keep references in compilation we generally don't go out of our way and try to let Babel do its thing.
Oh yeah I definitely have had trouble with source maps when debugging before too now that you mention it.
Is there any solution to something like this? I'm trying to get my organization to buy in to rewriting our app in Solid and it's going to be a tough sell if there's no workaround for this (aside from just ignoring it).
But you are right, it's not a single tool problem but something much bigger.
Describe the bug
When using Solid and testing our app with coverage reporting enabled (powered by istanbul/nyc), there are some branches/functions which are uncovered, but they are not branches which exist in our code, instead they are generated by Solid. Because these code paths are generated, we cannot place a
/* istanbul ignore next */
comment before the appropriate section because it doesn't exist anywhere in our source.A few cases where this occurs (I'm sure there's others):
Show
/Match
components - If the match is never used, there's an unused function because of theget children()
method which got generatedtypeof _ref$ === "function"
as the condiiton. Which in most cases will always be true/false so that means there's a branch of the code which never gets hit.All of these result in an extra uncovered function here, an extra uncovered branch there. And there's no way we can add the appropriate comments before this code to ignore it.
Your Example Website or App
https://playground.solidjs.com/anonymous/7b917606-9c75-4695-b669-accb486afc92
Steps to Reproduce the Bug or Issue
N/A
Expected behavior
When Solid is generating the runtime code, it should relocate the comments appropriately so they keep the same meaning that they have in the source.
Source:
Generated:
Source:
Generated: (This should always add the appropriate ignore comments since only one branch will ever be hit.)
Screenshots or Videos
No response
Platform
Additional context
It's also impossible currently to write our own plugin to do this since comments will get totally deleted during compilation when placed in certain spots of the JSX.
For example, this input:
Gets transformed into: (the second comment is just totally lost so we cannot even attempt to move it with our own plugin after Solid is done compiling)
This is a unique problem with Solid which doesn't exist with many other frameworks because Solid generates a lot of code rather than just calling functions from the Solid library. If these same bits of code were instead unconditional function calls to code in node_modules, this wouldn't be an issue.
The text was updated successfully, but these errors were encountered: