test(ci): opt in to hooks in packed lifecycle smoke

This commit is contained in:
haelyra
2026-08-30 15:13:07 -04:00
parent bdbd90a47f
commit caee3ee455
2 changed files with 3 additions and 2 deletions

View File

@@ -339,6 +339,7 @@ function runLifecycle(options) {
'--with', 'capability:ito-compute',
'--with', 'capability:prediction-markets',
'--target', 'cursor',
'--enable-hooks',
'--json',
];
parseJsonOutput(

View File

@@ -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'
);
});