From caee3ee455d770bda53cce41cd38ad4d35a8abbd Mon Sep 17 00:00:00 2001 From: haelyra <49814733+haelyra@users.noreply.github.com> Date: Sun, 30 Aug 2026 15:13:07 -0400 Subject: [PATCH] test(ci): opt in to hooks in packed lifecycle smoke --- tests/ci/packed-artifact-lifecycle.js | 1 + tests/ci/packed-artifact-lifecycle.test.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/ci/packed-artifact-lifecycle.js b/tests/ci/packed-artifact-lifecycle.js index 12935b036..22efad229 100644 --- a/tests/ci/packed-artifact-lifecycle.js +++ b/tests/ci/packed-artifact-lifecycle.js @@ -339,6 +339,7 @@ function runLifecycle(options) { '--with', 'capability:ito-compute', '--with', 'capability:prediction-markets', '--target', 'cursor', + '--enable-hooks', '--json', ]; parseJsonOutput( diff --git a/tests/ci/packed-artifact-lifecycle.test.js b/tests/ci/packed-artifact-lifecycle.test.js index cdc48c0a2..417877910 100644 --- a/tests/ci/packed-artifact-lifecycle.test.js +++ b/tests/ci/packed-artifact-lifecycle.test.js @@ -131,7 +131,7 @@ test('Windows public CLI invocation accepts the exact Itô capability selection' 'ecc', 'install', '--profile', 'core', '--with', 'capability:ito-compute', '--with', 'capability:prediction-markets', - '--target', 'cursor', '--json', + '--target', 'cursor', '--enable-hooks', '--json', ], { ComSpec: 'C:\\Windows\\System32\\cmd.exe' }, 'win32' @@ -140,7 +140,7 @@ test('Windows public CLI invocation accepts the exact Itô capability selection' assert.strictEqual(invocation.command, 'C:\\Windows\\System32\\cmd.exe'); assert.strictEqual( invocation.args[3], - 'npm exec --offline --yes=false -- ecc install --profile core --with capability:ito-compute --with capability:prediction-markets --target cursor --json' + 'npm exec --offline --yes=false -- ecc install --profile core --with capability:ito-compute --with capability:prediction-markets --target cursor --enable-hooks --json' ); });