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

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 {