Build the agent-native compute CRM platform
CI / verify (push) Successful in 3m6s

This commit is contained in:
2026-08-13 01:39:01 -07:00
parent bfd2f8d95a
commit 853bde2265
160 changed files with 61812 additions and 483 deletions
+9
View File
@@ -0,0 +1,9 @@
import assert from 'node:assert/strict';
import test from 'node:test';
import { retryBackoffMs } from '../src/queue';
test('task retry backoff grows but caps at one hour', () => {
assert.equal(retryBackoffMs(1), 60_000);
assert.equal(retryBackoffMs(2), 120_000);
assert.equal(retryBackoffMs(20), 3_600_000);
});