Skip to content

Commit

Permalink
Fix missing map creation
Browse files Browse the repository at this point in the history
  • Loading branch information
OEvgeny committed Oct 29, 2024
1 parent 13a5d8b commit fd18b7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/html/fluentTheme/side-by-side.wide.dark.html
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@

await host.snapshot();

const focusPresetsMap = {
const focusPresetsMap = new Map(Obje.entries({
navigation: async sendbox => {
sendbox.focus();
await host.sendKeys('Next message');
Expand Down Expand Up @@ -709,7 +709,7 @@
await host.sendKeys('ENTER');
await host.snapshot();
}
}
}));

const sendboxes = Array.from(document.querySelectorAll(`[data-testid="${WebChat.testIds.sendBoxTextBox}"]`))
.filter((_, index) => sendBoxIndexes.includes(String(index)));
Expand Down

0 comments on commit fd18b7c

Please sign in to comment.