Skip to content

Commit 62d3e95

Browse files
authored
feat: update learning assistant version (openedx#1175)
1 parent ce6771d commit 62d3e95

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@edx/brand": "npm:@edx/[email protected]",
3333
"@edx/frontend-component-footer": "12.0.0",
3434
"@edx/frontend-component-header": "4.0.0",
35-
"@edx/frontend-lib-learning-assistant": "^1.8.0",
35+
"@edx/frontend-lib-learning-assistant": "^1.9.0",
3636
"@edx/frontend-lib-special-exams": "2.20.1",
3737
"@edx/frontend-platform": "4.3.0",
3838
"@edx/paragon": "20.46.0",

src/courseware/course/chat/Chat.test.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('Chat', () => {
4747
{ store },
4848
);
4949

50-
const chat = screen.queryByRole('button');
50+
const chat = screen.queryByTestId('toggle-button');
5151
if (test.isVisible) {
5252
expect(chat).toBeInTheDocument();
5353
} else {
@@ -79,7 +79,7 @@ describe('Chat', () => {
7979
{ store },
8080
);
8181

82-
const chat = screen.queryByRole('button');
82+
const chat = screen.queryByTestId('toggle-button');
8383
if (test.isVisible) {
8484
expect(chat).toBeInTheDocument();
8585
} else {
@@ -139,7 +139,7 @@ describe('Chat', () => {
139139
{ store },
140140
);
141141

142-
const chat = screen.queryByRole('button');
142+
const chat = screen.queryByTestId('toggle-button');
143143
if (test.isVisible) {
144144
expect(chat).toBeInTheDocument();
145145
} else {

0 commit comments

Comments
 (0)