Skip to content

Commit

Permalink
test(full): Update test runner (#705)
Browse files Browse the repository at this point in the history
<!--
Pull requests are squash merged using:
- their title as the commit message
- their description as the commit body

Having a good title and description is important for the users to get
readable changelog.
-->

<!-- 1. Explain below WHAT the change is -->

New test runner, by default:
- Less verbose
- No output for successful tests

Parallel tests re-enabled.

<!-- 2. Explain below WHY the change cannot be made simpler -->


<!-- 3. Explain below WHY the was made or link an issue number -->



<!-- 4. Explain HOW users should update their code or remove that
section -->

#### Migration notes

_N/A_

<!-- 5. Readiness checklist
- [ ] The change come with new or modified tests
- [ ] Hard-to-understand functions have explanatory comments
- [ ] End-user documentation is updated to reflect the change
-->
  • Loading branch information
Natoandro authored Jul 4, 2024
1 parent 2606f8e commit f0402c1
Show file tree
Hide file tree
Showing 13 changed files with 487 additions and 216 deletions.
1 change: 1 addition & 0 deletions .ghjk/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ jobs:
ghjk x test-rust
ghjk x test-e2e --threads 1 -- --coverage=coverage
ghjk x test-e2e -- --coverage=coverage
# FIXME: required due to https://github.com/denoland/deno/issues/21621#issuecomment-1887870712
deno cache --import-map typegate/import_map.json \
Expand Down
9 changes: 8 additions & 1 deletion dev/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ export {
expandGlob,
expandGlobSync,
} from "https://deno.land/[email protected]/fs/mod.ts";
export { cyan, green } from "https://deno.land/[email protected]/fmt/colors.ts";
export {
cyan,
gray,
green,
red,
yellow,
} from "https://deno.land/[email protected]/fmt/colors.ts";
export { format as formatDuration } from "https://deno.land/[email protected]/fmt/duration.ts";
export {
mergeReadableStreams,
Expand All @@ -51,3 +57,4 @@ import Fuse from "https://deno.land/x/[email protected]/dist/fuse.esm.min.js";
export { Fuse };
import bytes from "https://deno.land/x/[email protected]/mod.ts";
export { bytes };
export * as ctrlc from "https://deno.land/x/[email protected]/mod.ts";
Loading

0 comments on commit f0402c1

Please sign in to comment.