Skip to content

Commit 261c70c

Browse files
committed
fix: test
1 parent 5c7fea3 commit 261c70c

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

packages/smarthr-ui/src/components/Combobox/MultiCombobox/MultiCombobox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ const ActualMultiCombobox = <T,>(
433433
</div>
434434

435435
<ul id={selectedListId} aria-label={decoratedAriaLabel} className={classNames.selectedList}>
436-
{selectedItems.map((selectedItem, i) => (
436+
{selectedItems.map((selectedItem) => (
437437
<li key={`${selectedItem.label}-${innerText(selectedItem.value)}`}>
438438
<MultiSelectedItem
439439
item={selectedItem}

packages/smarthr-ui/src/components/Combobox/MultiCombobox/stories/VRTMultiCombobox.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ const playMulti = async ({ canvasElement }: { canvasElement: HTMLElement }) => {
6565
const option2 = await within(body).findByRole('option', { name: 'option 2' })
6666
await userEvent.click(option2)
6767
await waitForRAF()
68-
const helpMessage = await within(body).findAllByText('入力でフィルタリングできます。')
69-
await userEvent.click(helpMessage[0]) // カーソルの点滅によるVRTのフレーキーを避けるためにフォーカスを移動する
7068
}
7169

7270
export default {

packages/smarthr-ui/src/components/Combobox/SingleCombobox/stories/VRTSingleCombobox.stories.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,6 @@ const playSingle = async ({ canvasElement }: { canvasElement: HTMLElement }) =>
115115
const body = canvasElement.ownerDocument.body
116116
const option = await within(body).findByText('option 1')
117117
await userEvent.hover(option)
118-
const helpMessage = await within(body).findByText('入力でフィルタリングできます。')
119-
await userEvent.click(helpMessage) // カーソルの点滅によるVRTのフレーキーを避けるためにフォーカスを移動する
120118
}
121119

122120
export default {

0 commit comments

Comments
 (0)