You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I run deno -A https://deno.land/std/testing/runner.ts projects/deno_std/fmt/sprintf_test.ts, it walks the whole directory tree from CWD and takes a really long time. Obviously no walking should be done in this case - sound easy enough.
Ideally though, deno test projects/deno_std/fmt/*_test.ts would only walk projects/deno_std/fmt. At that point you'd want to extract a magical glob expansion utility in //fs.
The text was updated successfully, but these errors were encountered:
If I run
deno -A https://deno.land/std/testing/runner.ts projects/deno_std/fmt/sprintf_test.ts
, it walks the whole directory tree from CWD and takes a really long time. Obviously no walking should be done in this case - sound easy enough.Ideally though,
deno test projects/deno_std/fmt/*_test.ts
would only walkprojects/deno_std/fmt
. At that point you'd want to extract a magical glob expansion utility in//fs
.The text was updated successfully, but these errors were encountered: