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
The ignoreCoverage comment seems to not function consistently:
In VS Code:
In Wallabyjs App:
Here is the code itself for your Repro purposes: (I can paste this exact snipper into a new file and it reproduces the issue on my machine)
exportenumTokenType{LiteralTrue='LiteralTrue',LiteralFalse='LiteralFalse',KeywordType='KeywordType',KeywordIf='KeywordIf',KeywordElse='KeywordElse',}constgetBooleanType=(value: string)=>{if(value==='true'){returnTokenType.LiteralTrue}elseif(value==='false'){returnTokenType.LiteralFalse}else{/* ignore coverage */thrownewError(`${value} is not a valid value for BooleanLiterals`)}}constgetKeywordType=(value: string)=>{if(value==='if'){returnTokenType.KeywordIf}elseif(value==='else'){returnTokenType.KeywordElse}elseif(value==='type'){returnTokenType.KeywordType}else{/* ignore coverage */thrownewError(`${value} is not a valid value for Keywords`)}}
Issue description or question
The ignoreCoverage comment seems to not function consistently:
In VS Code:
In Wallabyjs App:
Here is the code itself for your Repro purposes: (I can paste this exact snipper into a new file and it reproduces the issue on my machine)
Wallaby.js configuration file
Code editor or IDE name and version
Visual Studio Code Version 1.16.0-insider
OS name and version
OSX 10.12.6
The text was updated successfully, but these errors were encountered: