Joel Bennett
Joel Bennett
Agreed: I don't think you should split files. 😊 In my opinion, the whole point of having a file with more than one test in it is for it to...
It depends entirely on the overhead, and there's more overhead than you think. Your hypothetical "1s for repeated beforeAll" doesn't take into account the _bare minimum_ for parallelizing tests: 1....
Looks ok. I'm not sure we really want the bridge handling that, but it's optional, so ... fine.
Because PANSIES' `Write-Host` command is backwards compatible, has more features, and is _faster_. I've never had a single complaint about that command, either.
@alex-frankel what good would that do? The contentVersion shows up **in the deployment**, but the *tag* from the bicep registry shows up only in my source code, and is never...
I've got it working using the slack bot hook (so there's only one "integration"). I can send you a PR
I wouldn't think detecting the case of text would be too useful ... except in this case of detecting token case, obviously 😁 Are you trying to _get_ it, or...
Well, I do think it would be cool to detect the case, so we could write `[Color] [Person]` and have it come out "Blue Bob Smith" or `Thanks, [adjective] [Person]`...
This all seems like overkill. Surely all you need is a simple macro? ``` python import sublime, sublime_plugin class EverythingIsLanguage(sublime_plugin.EventListener): def on_new(self, view): view.set_syntax_file('PutYourLanguageHere') ```