Dominik Janiec

Results 7 issues of Dominik Janiec

I found strange inconsistency in behaviour of `NUnit.ConsoleRunner` between _explore_ and _execute_ when there are _"problematic"_ test cases - i.e. an exception thrown when resolving `TestCaseSource` values. Generally speaking, I...

Needs Discussion

With `PowerShell 7.3` the `$PSNativeCommandArgumentPassing` becomes `'Standard'`. It will break a few tests using `test-vsts-pr` alias. In previous versions of PowerShell, this was set or assumed as `'Legacy'`, and now...

_This is a feature proposal rather than a bug._ I've found that, when `git` execution is skipped within `Import-Module` call, it can save about 100 milliseconds of module startup time....

Currently, [tests here are executed within `PowerShell 7.2.9`](https://github.com/actions/runner-images/blob/win22/20230214.1/images/win/Windows2022-Readme.md#powershell-tools). However, when one executes tests within `PowerShell 7.3.3`, a few tests using `test-vsts-pr` alias are failing. I believe it is because of...

Have a global `.gitconfig` with: ``` [commit] gpgSign = true ``` Which makes `Invoke-Pester` to fail tests with: * One in `Get-GitDirectory.Tests.ps1`: `Returns the correct dir when under a worktree`...

### Checklist - [X] Issue 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 of...

Bug

Have a simple test file like: ```powershell Describe 'the host program' { It 'supports user interaction' { $Host.UI.RawUI.WindowTitle = "magic" $title = $Host.UI.RawUI.WindowTitle $title | Should -Not -BeNullOrEmpty } }...

enhancement