summaryrefslogtreecommitdiff
path: root/web/test
diff options
context:
space:
mode:
authorClaudomator Agent <agent@claudomator.local>2026-07-06 09:46:45 +0000
committerClaudomator Agent <agent@claudomator.local>2026-07-06 09:46:45 +0000
commit4344e4d49a94d5d636f4667812b556566ef71849 (patch)
tree77987ab218d9988548aeb108dfb2393a4d6b3ec4 /web/test
parentd2cbe9aa07afdc0aac33c959803d6a6aaef69b8e (diff)
feat(web): add cardContentSignature to skip log-tail in render dedup (task 5)
Prevents renderTasksIntoContainer from tearing down and rebuilding a task card on every poll tick just because its .task-log-tail has accumulated streamed log lines. Exports cardContentSignature which walks the card element tree and returns a stable fingerprint that ignores .task-log-tail and .running-log subtrees. Also preserves the existing log-tail node across a real content-change swap so live EventSource streams survive. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/test')
-rw-r--r--web/test/tasks-board.test.mjs22
1 files changed, 22 insertions, 0 deletions
diff --git a/web/test/tasks-board.test.mjs b/web/test/tasks-board.test.mjs
index db61880..1e35e18 100644
--- a/web/test/tasks-board.test.mjs
+++ b/web/test/tasks-board.test.mjs
@@ -11,6 +11,7 @@ import {
columnForTaskState,
groupTasksByColumn,
createTaskCard,
+ cardContentSignature,
} from '../app.js';
describe('columnForTaskState', () => {
@@ -227,3 +228,24 @@ describe('createTaskCard elapsed timer', () => {
assert.equal(ready.querySelector('.task-elapsed[data-started-at]'), null);
});
});
+
+// ── renderTasksIntoContainer: log-tail preservation across re-renders ──────
+
+describe('cardContentSignature', () => {
+ it('excludes .task-log-tail content from the signature', () => {
+ const doc = makeMockDoc();
+ const cardA = createTaskCard({ id: 't1', name: 'Task', state: 'READY' }, doc);
+ const cardB = createTaskCard({ id: 't1', name: 'Task', state: 'READY' }, doc);
+ // Simulate cardB having accumulated live log lines that cardA (freshly built) doesn't have.
+ const tailB = cardB.querySelector('.task-log-tail');
+ tailB.children.push({ tag: 'div', className: 'log-line', textContent: 'some streamed output', children: [] });
+ assert.equal(cardContentSignature(cardA), cardContentSignature(cardB));
+ });
+
+ it('still differs when a non-log field changes', () => {
+ const doc = makeMockDoc();
+ const cardA = createTaskCard({ id: 't1', name: 'Task', state: 'READY' }, doc);
+ const cardB = createTaskCard({ id: 't1', name: 'Task', state: 'FAILED' }, doc);
+ assert.notEqual(cardContentSignature(cardA), cardContentSignature(cardB));
+ });
+});