refactor: make baseTimestamp optional in addItem and remove redundant calls (#16471)

This commit is contained in:
Sehoon Shon
2026-01-13 14:15:04 -05:00
committed by GitHub
parent aa52462550
commit 91fcca3b1c
30 changed files with 528 additions and 888 deletions
@@ -109,7 +109,6 @@ describe('hooksCommand', () => {
expect.objectContaining({
type: MessageType.HOOKS_LIST,
}),
expect.any(Number),
);
});
});
@@ -155,7 +154,6 @@ describe('hooksCommand', () => {
type: MessageType.HOOKS_LIST,
hooks: [],
}),
expect.any(Number),
);
});
@@ -179,7 +177,6 @@ describe('hooksCommand', () => {
type: MessageType.HOOKS_LIST,
hooks: [],
}),
expect.any(Number),
);
});
@@ -208,7 +205,6 @@ describe('hooksCommand', () => {
type: MessageType.HOOKS_LIST,
hooks: mockHooks,
}),
expect.any(Number),
);
});
});