feat: add lead qualification workflow
This commit is contained in:
@@ -4,6 +4,7 @@ import test from "node:test";
|
||||
import {
|
||||
RUN_STATUSES,
|
||||
SCREENSHOT_VIEWPORTS,
|
||||
LEAD_PRIORITIES,
|
||||
filterSafeSettingsRows,
|
||||
isSafeSettingsKey,
|
||||
normalizeListLimit,
|
||||
@@ -49,6 +50,10 @@ test("run statuses expose observable job lifecycle states", () => {
|
||||
]);
|
||||
});
|
||||
|
||||
test("lead priorities include manual blocking option", () => {
|
||||
assert.deepEqual(LEAD_PRIORITIES, ["high", "medium", "low", "defer", "blocked"]);
|
||||
});
|
||||
|
||||
test("list limits are clamped to a positive integer range", () => {
|
||||
assert.equal(normalizeListLimit(undefined), 50);
|
||||
assert.equal(normalizeListLimit(-10), 1);
|
||||
|
||||
Reference in New Issue
Block a user