feat: update learning assistant version (#1175)

This commit is contained in:
alangsto
2023-08-29 15:47:02 -04:00
committed by GitHub
parent ce6771d7cc
commit 62d3e95cc8
3 changed files with 8 additions and 8 deletions

8
package-lock.json generated
View File

@@ -12,7 +12,7 @@
"@edx/brand": "npm:@edx/brand-openedx@1.2.0",
"@edx/frontend-component-footer": "12.0.0",
"@edx/frontend-component-header": "4.0.0",
"@edx/frontend-lib-learning-assistant": "^1.8.0",
"@edx/frontend-lib-learning-assistant": "^1.9.0",
"@edx/frontend-lib-special-exams": "2.20.1",
"@edx/frontend-platform": "4.3.0",
"@edx/paragon": "20.46.0",
@@ -3433,9 +3433,9 @@
}
},
"node_modules/@edx/frontend-lib-learning-assistant": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@edx/frontend-lib-learning-assistant/-/frontend-lib-learning-assistant-1.8.0.tgz",
"integrity": "sha512-PpDiV4TB99KD1TltQ7ADOVG5Rl1c4XTdhzYxUoWucporgUYSmWF7ycJIasmRbncP2LR5iNQJCDfsflDhmb0qIA==",
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@edx/frontend-lib-learning-assistant/-/frontend-lib-learning-assistant-1.9.0.tgz",
"integrity": "sha512-tjsHhB9+aQ2yviQGn2U/qURELfg4xkENNL0ev70tLAXbNztziN43KPIFZNzOXpLM8prO1ADRm9iS/kc8ahpjNA==",
"dependencies": {
"@edx/brand": "npm:@edx/brand-openedx@1.2.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",

View File

@@ -32,7 +32,7 @@
"@edx/brand": "npm:@edx/brand-openedx@1.2.0",
"@edx/frontend-component-footer": "12.0.0",
"@edx/frontend-component-header": "4.0.0",
"@edx/frontend-lib-learning-assistant": "^1.8.0",
"@edx/frontend-lib-learning-assistant": "^1.9.0",
"@edx/frontend-lib-special-exams": "2.20.1",
"@edx/frontend-platform": "4.3.0",
"@edx/paragon": "20.46.0",

View File

@@ -47,7 +47,7 @@ describe('Chat', () => {
{ store },
);
const chat = screen.queryByRole('button');
const chat = screen.queryByTestId('toggle-button');
if (test.isVisible) {
expect(chat).toBeInTheDocument();
} else {
@@ -79,7 +79,7 @@ describe('Chat', () => {
{ store },
);
const chat = screen.queryByRole('button');
const chat = screen.queryByTestId('toggle-button');
if (test.isVisible) {
expect(chat).toBeInTheDocument();
} else {
@@ -139,7 +139,7 @@ describe('Chat', () => {
{ store },
);
const chat = screen.queryByRole('button');
const chat = screen.queryByTestId('toggle-button');
if (test.isVisible) {
expect(chat).toBeInTheDocument();
} else {