Skip to content

Commit 0c4a0e0

Browse files
committed
Fix multi select test to use correct type
1 parent c1d2093 commit 0c4a0e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/blocks/slack/test/wait-for-interaction.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ describe('wait-for-interaction', () => {
247247
resumePayload: {
248248
queryParams: {
249249
userName: 'test_user',
250-
actionType: 'value 1', // Match one of the action values
250+
actionType: 'multi_static_select',
251251
actionClicked: JSON.stringify([
252252
{
253253
value: 'value 1',
@@ -271,7 +271,7 @@ describe('wait-for-interaction', () => {
271271

272272
const result = await onReceivedInteraction(
273273
messageObj,
274-
['value 1', 'value 2'],
274+
['multi_static_select'],
275275
context,
276276
'step_1',
277277
);

0 commit comments

Comments
 (0)