From 6fbf5b952f0e57cd9a8081b28db598b6bd7ad372 Mon Sep 17 00:00:00 2001 From: Abdul Wahab Date: Fri, 14 Aug 2026 16:07:47 +0500 Subject: [PATCH] update --- tests/concept-seed.test.mjs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/concept-seed.test.mjs b/tests/concept-seed.test.mjs index 0a3aeffdf..2c220b666 100644 --- a/tests/concept-seed.test.mjs +++ b/tests/concept-seed.test.mjs @@ -579,7 +579,9 @@ describe('init gate', () => { it('deals a direction once --seed-declined records the user skip', () => { const dir = seedGateDir(); - const result = spawnSync(process.execPath, [SCRIPT, '--scope', 'direction', '--from', 'gate-test', '--seed-declined'], { + // The flag carries evidence: the user's verbatim skip answer. A bare + // flag refuses (covered by the refusal test above). + const result = spawnSync(process.execPath, [SCRIPT, '--scope', 'direction', '--from', 'gate-test', '--seed-declined=Skip it, just roll a direction now.'], { cwd: dir, encoding: 'utf-8', env: { ...process.env, IMPECCABLE_CATALOG_DIR: FIXTURE_DIR, IMPECCABLE_CONTEXT_DIR: '' }, @@ -875,7 +877,8 @@ describe('API roll path', () => { const result = await new Promise((resolveRun, rejectRun) => { const child = spawn(NODE, [ '--import', pathToFileURL(preloadPath).href, - SCRIPT, '--scope', 'direction', '--mode', 'persuade', '--from', 'api-test', '--seed-declined', + SCRIPT, '--scope', 'direction', '--mode', 'persuade', '--from', 'api-test', + '--seed-declined=Skip it, just roll a direction now.', ], { cwd: dir, env: {