Katie

Results 21 comments of Katie

I ran into the same issue when mocking `Fingerprintjs2`; `Fingerprint2.get.mockImplementation` expected the one argument signature, but I needed to implement the two argument version. This is what it took to...

I should mention that I only realized this because the type of `Fingerprint2.get` was this beast: ```ts CalledWithMock void]> & { (options: Options, callback: (components: Component[]) => void): void; (callback:...

This ticket can be closed now that #10 is merged ✨

I've changed the record validation loop to this just to remove the ordering constraint, although this implementation isn't the cleanest. This issue makes it difficult to enforce the presence of...

On Mojave I've been able to automate the creation of new spaces with this: ```applescript tell application "System Events" do shell script "/Applications/Mission\\ Control.app/Contents/MacOS/Mission\\ Control" click button 1 of group...

This fixes #9 and also resolves #3 in the process ✨

Hey! I see there've been a lot of commits to the VS Code theme, do you think that's stable enough for the colors to be ported over to the other...

I noticed the theme looks a bit off in vim and opened #9 a while ago. There's PR #11 that might address the problems you're seeing on vimcolorschemes

Vim uses carets to differentiate between StatusLine and StatusLineNC if they have the same colors set. I'm not seeing this in my airline, but I do see it in the...

Making the key non-static helps a lot, thanks! In my case I'll still have to unwrap my HeaderValues into `&str` only to be converted back to HeaderValues again It might...