We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If you like the Should sytax, but don't want it to throw, and would rather have it just return $true or $false, you can just use the -test option.
@(1,2,3) | Should Be @(1,2) -test # outputs $false
In this case, the should expression is evaluated, but an exception is not thrown. Instead Should returns $false.