DarkLite1
DarkLite1
Same issue but for standard Exrpess: ```typsescript app.use( passport.authenticate('oauth-bearer', { session: false }), (next) => { next() } ) ``` Throws the TS error:  Tried the suggestion `"esModuelInterop":false` but...
Yeah, I also ended up here thinking that this would've been a really cool addition to the library. Shame you're no longer into Vuex anymore if I read it correctly....
Oh, I'm sorry. I just thought it was related because of the same error message
Stumbled upon this issue with Pester 5.1.1: ```powershell Describe 'a hash table should be correctly counted with' { BeforeAll { $hashTable = @{ Key1 = 1 Key2 = 2 }...
Thank you @martin9700 but `-Contain` looks for an exact match in the collection while the intention here is to find a partial match in the collection.
True! Didn't think about that as I was in the `Pester` mindset. But your workaround is indeed very elegant. I'll consider using that in the meantime,. Thank you for your...
Hmmm... After trying the following code it's returning success while it should fail: ```powershell $Collection = @('apples', 'kiwi') Describe 'test' { it 'should not be green but it is' {...
Let's see if it's possible to implement my feature request in the `Pester` suit. Thanks anyhow for the help Maritn, much appreciated.
@nohwnd `assert-any` and `assert-all` are not actually the same as this request. What I would like `Pester` to do is to match a piece of an `item` in an `array`...
You are correct, I was wrong about `assert-any` as I assumed that one `item` in the array needs to be equal to the requested `item`. Maybe `-ContainsLike` would've been a...