agentic-workflow-manager 8.5.1 → 8.5.2
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.
|
@@ -128,7 +128,7 @@ acceptance('published doctor and evidence acceptance (R8.7)', () => {
|
|
|
128
128
|
`const store=require(${JSON.stringify(path_1.default.join(cliRoot, 'dist', 'src', 'core', 'journal', 'store.js'))});`,
|
|
129
129
|
'store.initJournal(process.argv[1], process.argv[2]);',
|
|
130
130
|
'const state=store.readJournal(process.argv[1], process.argv[2]).state;',
|
|
131
|
-
"state.cycle={...state.cycle,status:'COMPLETE',completedAt:
|
|
131
|
+
"state.cycle={...state.cycle,status:'COMPLETE',completedAt:new Date(Date.now()+1_000).toISOString()};",
|
|
132
132
|
'store.writeJournal(process.argv[1], process.argv[2], state);',
|
|
133
133
|
].join('');
|
|
134
134
|
expect(command(project, process.execPath, ['-e', journalScript, project, branch], env).status).toBe(0);
|
|
@@ -138,7 +138,7 @@ acceptance('published doctor and evidence acceptance (R8.7)', () => {
|
|
|
138
138
|
expect(fs_1.default.existsSync(path_1.default.join(project, '.awm', 'evidence', 'cycles', `${capture.stdout.trim()}.json`))).toBe(true);
|
|
139
139
|
// The retrospective/ledger lifecycle happens after the durable
|
|
140
140
|
// observation, never instead of it.
|
|
141
|
-
expect(invoke('ledger', 'add', '--branch', branch, '--polarity', 'finding', '--class', '
|
|
141
|
+
expect(invoke('ledger', 'add', '--branch', branch, '--polarity', 'finding', '--class', 'proceso', '--signature', 'published-retro-contract', '--severity', 'important', '--desc', 'published acceptance').status).toBe(0);
|
|
142
142
|
expect(invoke('ledger', 'archive', '--branch', branch).status).toBe(0);
|
|
143
143
|
}
|
|
144
144
|
finally {
|