Fix CLI test timeouts#8090
Merged
deleonio merged 2 commits intofeature/update-migrations-tool-auf-3.0.1from Jul 21, 2025
Merged
Fix CLI test timeouts#8090deleonio merged 2 commits intofeature/update-migrations-tool-auf-3.0.1from
deleonio merged 2 commits intofeature/update-migrations-tool-auf-3.0.1from
Conversation
Contributor
|
Netlify Draft Deployment |
Contributor
Hydration Benchmark Report (vs Baseline)✅ Top 5 Improvements (Best Speedups)
🔻 Flop 5 Regressions (Worst Slowdowns)
📋 Show all results
|
d4b7dd6
into
feature/update-migrations-tool-auf-3.0.1
8 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the
kolibri-clitool to use asynchronous parsing for CLI commands and adjusts the corresponding test cases to support this change. The most important changes include replacingprogram.parse()withprogram.parseAsync()and updating test cases to useasyncfunctions.Updates to CLI command parsing:
packages/tools/kolibri-cli/src/index.ts: Changedprogram.parse()toprogram.parseAsync()to enable asynchronous parsing of CLI commands.Updates to test cases:
packages/tools/kolibri-cli/test/cli-interface.spec.ts: Updated multiple test cases to useasyncfunctions andawait program.parseAsync()instead ofprogram.parse()for commands likegenerate-scss,info, andmigrate. This ensures compatibility with the asynchronous parsing introduced in the CLI commands. [1] [2] [3]