Add atomic Live benchmark controls

AI-assisted: Codex
This commit is contained in:
Paul Bakaus
2026-07-13 10:43:21 -07:00
parent e9121b26fe
commit a274f93c4e
5 changed files with 18 additions and 2 deletions
+3
View File
@@ -45,6 +45,9 @@ describe('Codex Live worker configuration', () => {
assert.equal(resolveCodexWorkerConfig({
env: { CODEX_THREAD_ID: 'thread-1', IMPECCABLE_LIVE_CODEX_PROFILE: 'fast' },
}).effort, 'low');
assert.equal(resolveCodexWorkerConfig({
env: { CODEX_THREAD_ID: 'thread-1', IMPECCABLE_LIVE_CODEX_DELIVERY: 'atomic' },
}).delivery, 'atomic');
assert.equal(isCodexRuntime({ CLAUDE_CODE: '1' }), false);
assert.equal(isCodexRuntime({ GEMINI_CLI: '1' }), false);
});