Erik Jonsson Thorén
Erik Jonsson Thorén
``` html @If.HasUsers Yay Users! @EndIf @Each.Users @Current.Name says: @If.IsFromGreece Yay Greece! @EndIf @IfNot.IsFromGreece Boo Greece! @EndIf @EndEach ``` Result: ``` html Yay Users! Bob says:Yay Greece! Malin says:Boo Greece!...
This SSVE markup: ``` @Context.ViewBag.HaveMessage; @If.Context.ViewBag.HaveMessage; Yay Message! @EndIf; ``` **Produces in Nancy:** ``` True ``` **Produces in SSVE test:** ``` True Yay Message! ``` ``` [Fact] public void Should_evaluate_context_conditional()...
### Prerequisites - [X] I confirm my issue is not in the [opened issues](https://github.com/mswjs/msw/issues) - [X] I confirm the [Frequently Asked Questions](https://mswjs.io/docs/faq) didn't contain the answer to my issue ###...
resolves https://github.com/mswjs/msw/issues/2309 **Underlying issue** As i understand the code: if consumer attempts to start reading stream before buffer is sent, the items will be removed from the writeBuffer. If `passthrough()`...
Hello, My loader file is executed twice and it seems it is caused by a CJS dependency which calls `createRequire`. Importing `createRequire` in my ESM script does not execute loader...
Hello! Thanks for this very useful library. This PR removes dependencies on `jest` and `@jest/globals`. Reasoning: * Reduces dependencies/footprint * Comaptible with native Node test runner. I suspect supporting non-Jest...