Frode Flaten
Frode Flaten
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - [X] Search the existing issues. -...
# PR Summary Adds a helper in `EnumSingleTypeConverter` to get enum names-array. Updates switch statement completer to use the new helper instead of string joining + splitting. ## PR Context...
# PR Summary Updates parameter completion for enums to exclude values not allowed by `ValidateRange`-attributes. ## PR Context See [this comment](https://github.com/PowerShell/PowerShell/issues/17546#issuecomment-1165989939) Fix #2849 ## PR Checklist - [x] [PR has...
# PR Summary Resets the `Tags`-list in `PSModuleInfo` that survives the shallow clone when getting moduleinfo from scriptanalysiscache. ## PR Context Currently on repeated calls to `Test-ModuleManifest` for modules with...
## PR Summary Adds support for manifest module to `Mock`, `Should -Invoke` and `InModuleScope`. Fix #1456 Fix #933 ## PR Checklist - [x] PR has meaningful title - [x] Summary...
### Checklist - [X] Feature request has a meaningful title - [X] I have searched the existing issues. See [all issues](https://github.com/pester/Pester/issues?q=is%3Aissue) - [X] I have tested using the latest version...
## PR Summary PowerShell doesn't resolve local functions properly for `AliasInfo` when function is defined in local scope in different session state. This affects use of `-HaveParameter` on a mocked...
## PR Summary Follow-up to #2101 which enabled use of lists when assigning ex. `Run.Path` from hashtable. This PR enables assigning lists to an existing configuration-object, ex `$c.Run.Path = [arraylist]@()`....
## PR Summary Throws an exception when attempting to add a new operator when there's already 32 registered. PowerShell only allows 32 parameter sets due to a `uint`-bitmask used to...
## PR Summary Enables `Should -HaveParameter` to test that a parameter actually exists, but was **not** mandatory and/or did **not** have argument completer. Currently this was only covered by `Should...