Bump react-film@3.1.1-main.df870ea by compulim · Pull Request #4648 · microsoft/BotFramework-WebChat · GitHub
Skip to content
Merged
Show file tree
Hide file tree
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 CHANGELOG.md
10 changes: 2 additions & 8 deletions __tests__/html/suggestedActions.scroll.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@
await pageConditions.numActivitiesShown(2);

// WHEN: The right flipper button is clicked.
document.querySelector('[aria-label="Suggested actions"] [aria-label="right"]').click();

// TODO: This will be updated from "left/right" to "next/previous" when the carousel support customizing the aria-label. Commented out for now.
// document.querySelector('[aria-label="Suggested actions"] [aria-label="next"]').click();
document.querySelector('[aria-label="Suggested actions"] [aria-label="Next"]').click();

// THEN: It should scroll to the right.
await pageConditions.became(
Expand All @@ -38,10 +35,7 @@
);

// WHEN: The left flipper button is clicked.
document.querySelector('[aria-label="Suggested actions"] [aria-label="left"]').click();

// TODO: This will be updated from "left/right" to "next/previous" when the carousel support customizing the aria-label. Commented out for now.
// document.querySelector('[aria-label="Suggested actions"] [aria-label="previous"]').click();
document.querySelector('[aria-label="Suggested actions"] [aria-label="Previous"]').click();

// THEN: It should scroll back to the origin.
await pageConditions.became(
Expand Down
10 changes: 2 additions & 8 deletions __tests__/html/suggestedActions.scroll.rtl.html
Loading