Joe Skeen
Joe Skeen
@bergmeister I have tried suppressing the warning as you suggested: ``` [Parameter(Mandatory=$false, HelpMessage="The SystemAttributeValue.ObjectId property (Required)")] [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '$ObjectId', Justification = 'false positive')] [int] $ObjectId ``` But I am still getting...
I'm currently playing around with implementing an EmojiCode-native regular expressions library. I'm following this guide: and taking inspiration from [emogex](https://gist.github.com/Terrain2/e0336c76e0a62b2ae537dfb6ffe12935) (from the comment above) and [emojex](https://github.com/natemoo-re/emojex), while trying to make...
I've taken another stab at it, and I'm happy to say I have a very early working alpha of regular expressions for EmojiCode. You can check it out here: ....
Wrote 271 unit tests, and fixed a handful of bugs! Feeling pretty good about the currently implemented functionality. (I updated the gist with the bug fixes, and the unit tests.)
@thbwd looks like another year has come and gone, and another version of the Emoji spec has been published: . Could you please share your script you used to generate...
I found where the JaCoCo generation code is. https://github.com/pester/Pester/blob/6e8eb89da86fcd7298047cda385f3c4b67ef311f/src/functions/Coverage.ps1#L805 As Cobertura is another XML-based coverage format, I'm hoping it wouldn't be too hard to implement. I did find the Cobertura...
Yeah, seems like Cobertura is still a preferred format in the JS world, as that's one of the most commonly referenced output formats when I'm looking into Jest code coverage....
> @mrboring : > I think I have another example of this issue in Pester tests. The code below is based on actual code, but simplified as much as possible....
Hey @rwasef1830 , I just had the same question, so I cloned the repo and got it to work with dotnet core 3.1. Here's basically what I did: * generated...
I took some time and wrote a script to generate the dynamic parts of `Compiler/Lex/EmojiTokenization.cpp`: ```js const response = await fetch("https://unicode.org/Public/emoji/latest/emoji-test.txt"); const text = await response.text(); const emojiPattern = /^([0-9A-F...