jibbers42

Results 20 issues of jibbers42

Inspired by https://stackoverflow.com/a/34981556, a method like this would be convenient... ```csharp static bool All(this IEnumerable source, Func predicate, bool mustHaveItems) { foreach (var e in source) { if (!predicate(e)) return...

The code below does not fail in v3. This seems similar to #30 (v2 does still return nulls). ``` [Property] public Property Test(string s) { return (s != null).Collect(s); }...

enhancement

I'm unable to return a Property from async tests. I'm not sure if the issue is more or less a missing overload in the api or if things are more...

bug
v3

A.scala: ``` package skip package a import acyclic.skipped trait A { val b: B } ``` B.scala: ``` package skip package a import acyclic.skipped trait B { val a: A...

I'm posting here since there is no failure in ScalaTest, but the details of the issue are beyond my understanding; let me know if it should be posted elsewhere (like...

I get the "No tests match regular expression..." error when using [Glados](https://github.com/MarcelGarus/glados) (property-based testing) and attempting to run a test via test code lens. It seems they modify the name...

is enhancement
in testing

Working in a language like typescript causes false tag closes when coding generics. A new setting that restricts closes to only when typing in a quoted string would allow users...

enhancement
help wanted

Please forgive any errors in terminology for vscode workspaces, roots, folders, etc. I created stylizer settings in a folder root in my multi folder workspace, but as can be seen...

enhancement
help wanted

**Is your feature request related to a problem? Please describe.** I have an app that has a cli and a gui (flutter) with common code backing them. I did a...

enhancement

Is there a way to allow a default when using nested commands? ```yaml // syntax seems not allowed in yaml (from IDE message in vscode, not personally sure) scripts: gen:...