Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/review-agent.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ test('persona declares a slack scope that survives persona-kit parsing and cover
const scope = parsed?.slack?.scope;
assert.ok(scope && Object.keys(scope).length > 0, 'slack integration must declare a non-empty scope or cloud mounts no /slack paths');
const covers = Object.values(scope).some(
(value) => typeof value === 'string' && value.startsWith('/slack/channels'),
(value) => typeof value === 'string' && value.startsWith('/slack/channels/'),
);
assert.ok(covers, 'slack scope must cover /slack/channels/** so slackClient() drafts reach the writeback worker');
});