icoa-cli 2.19.26 → 2.19.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/exam.js +4 -0
- package/package.json +1 -1
package/dist/commands/exam.js
CHANGED
|
@@ -837,6 +837,8 @@ export function registerExamCommand(program) {
|
|
|
837
837
|
console.log(chalk.gray(' Sydney, Australia · Jun 27 - Jul 2, 2026'));
|
|
838
838
|
console.log();
|
|
839
839
|
console.log(chalk.cyan(' ═══════════════════════════════════════'));
|
|
840
|
+
// Paced reveal: give the user time to absorb each section.
|
|
841
|
+
await sleep(3000);
|
|
840
842
|
// Per-category breakdown with ASCII progress bars
|
|
841
843
|
const catEntries = Object.entries(categoryStats);
|
|
842
844
|
if (catEntries.length > 0) {
|
|
@@ -870,6 +872,7 @@ export function registerExamCommand(program) {
|
|
|
870
872
|
else {
|
|
871
873
|
clearRetryQueue();
|
|
872
874
|
}
|
|
875
|
+
await sleep(3000);
|
|
873
876
|
// Show wrong answers with explanations
|
|
874
877
|
if (wrongQuestions.length > 0) {
|
|
875
878
|
console.log();
|
|
@@ -906,6 +909,7 @@ export function registerExamCommand(program) {
|
|
|
906
909
|
console.log();
|
|
907
910
|
console.log(chalk.white(' 💪 Want to nail the ones you missed? Type: ') + chalk.bold.cyan('retry'));
|
|
908
911
|
}
|
|
912
|
+
await sleep(3000);
|
|
909
913
|
console.log();
|
|
910
914
|
// ─── What is CTF + Dual-track introduction ───
|
|
911
915
|
console.log(chalk.white(` ${t('theoryDone')}`));
|